Replicated code from Jenny Trickey’s repo here
Summaries generated: 2025 Jun 10 17:03 UTC
Load needed libraries.
# load all libraries
devtools::install_github('taikisan21/PAMpal')
library(PAMpal)
# library(kableExtra) # known bug with R ver 4.3.0 so install from github
devtools::install_github('kupietz/kableExtra')
library(kableExtra)
library(ggplot2)
library(RSQLite)
library(tuneR)
# library(wesanderson)
library(here)
library(DBI)
# I don't think we need these but saving here in case
library(dplyr)
# library(tcltk)
# library(manipulate)
Set user-defined variables.
# name project
# ProjID <- 'MHI UxS Glider Project'
# combine trip, recorder, pg version (all defined in YAML) to single run string
# dbFileStr <- paste0(params$mission, '_', params$drift, '_Kogia_', params$pgver)
# define subfolder paths based on selected analysis folder and trip strings
# path_to_db <- file.path(params$path_pg, 'Database')
# path_to_binaries <- file.path(params$path_pg, 'Binaries', params$drift)
path_to_binaries <- choose.dir(default="", caption = "Select path to specific drift main binaries folder")
# assemble some file names
# pamguard database
# dbFile <- file.path(path_to_db, paste0(dbFileStr, '.sqlite3'))
dbFile <- file.choose()
# dbFile <- choose.files(default = "", caption = "Select database file", multi = FALSE)
# already processed acoustic study 'dets' file
detsFile <- file.path(params$path_dets, paste0(params$mission, '_', params$drift,'/', params$mission, '_2024_', params$drift, '_Filtered.rdata'))
detsFiltFile <- file.path(params$path_dets,
paste0(params$mission, '_', params$drift,'/', params$mission, '_2024_', params$drift, '_', params$channelStr, '.rdata'))
# specify calibration file
# calFile <- params$calFile # pull from YAML
# set path to reference spectra if will be used
path_to_refSpec <- file.path(params$path_to_refSpec) # pull from YAML
# specify which reference spectra to plot
# refSpecList = c('Gm', 'Pc')
refSpecList <- params$refSpecList # pull from YAML
refSpecSp <- params$refSpecSp
# ALTERNATIVE SELECT PATHS
# path_pg <- choose.dir(default = "", caption = "Select path to pamguard folder that contains databases and binaries folders")
# # select path to database files
# path_to_db <- choose.dir(default = "", caption = "Select path to folder with all database files")
# # select path to specific binary drift file
# path_to_binaries <- choose.dir(default="", caption = "Select path to specific drift main folder")
# # set up datebase driver
# sqlite <- dbDriver("SQLite") # outdated/no longer supported
# connect to SQLite database using the newer method
con <- dbConnect(RSQLite::SQLite(), dbname = dbFile)
#Set time zone to UTC
Sys.setenv(TZ = 'UTC')
# reference spectra colors - allows for up to 6 ref specs
# pastel
# rsPalette <- c('#66c2a5', '#fc8d62', '#8da0cb', '#e78ac3',
# '#a6d854', '#ffd92f')
# bold
rsPalette <- c('#1b9e77', '#d95f02', '#7570b3', '#e7298a',
'#66a61e', '#e6ab02')
Source some external functions
source(here::here('_code/functions', 'loadMultiBinaries.R'))
source(here::here('_code/functions', 'plotContours.R'))
source(here::here('_code/functions', 'clickSummary.R'))
source(here::here('_code/functions', 'whistleSummary.R'))
# if not using Rproj/here package use:
# source(file.path(params$path_code, 'R', 'functions', 'loadMultiBinaries.R'))
If already created, load an existing dets PAMpal
AcousticStudy object for event processing. We need to load both the
unfiltered dets and filtered detsFilt
AcousticStudies.
# load existing dets AcousticStudy (created with
# workflow_generate_acousticStudies.R)
# load(detFile)
if (file.exists(detsFile)){
dets <- readRDS(detsFile)
cat('Loaded', detsFile, '\n')
} else {
cat('No AcousticStudy \'dets\' file available', '\n')
}
## Loaded F:/gcp_upload/2_Acoustic-Studies/CalCurCEAS_020/CalCurCEAS_2024_020_Filtered.rdata
if (file.exists(detsFiltFile)){
detsFilt <- readRDS(detsFiltFile)
cat('Loaded', detsFiltFile, '\n')
} else {
cat('No AcousticStudy \'detsFilt\' file available', '\n')
}
## Loaded F:/gcp_upload/2_Acoustic-Studies/CalCurCEAS_020/CalCurCEAS_2024_020_ch1.rdata
# summarize how many events
nEvents <- length(names(PAMpal::events(dets)))
# number of events may change after filtering (all clicks may be filtered out)
nEventsFilt <- length(names(PAMpal::events(detsFilt)))
Loaded F:/gcp_upload/2_Acoustic-Studies/CalCurCEAS_020/CalCurCEAS_2024_020_Filtered.rdata and F:/gcp_upload/2_Acoustic-Studies/CalCurCEAS_020/CalCurCEAS_2024_020_ch1.rdata
## Updated the locations of 1 out of 1 missing database files.
## Updated the locations of 16002 out of 16002 missing binary files.
## Updating files in events...
## | | | 0% | | | 1% | |= | 1% | |= | 2% | |== | 2% | |== | 3% | |=== | 3% | |=== | 4% | |==== | 4% | |==== | 5% | |===== | 5% | |===== | 6% | |===== | 7% | |====== | 7% | |====== | 8% | |======= | 8% | |======= | 9% | |======== | 9% | |======== | 10% | |========= | 10% | |========= | 11% | |========= | 12% | |========== | 12% | |========== | 13% | |=========== | 13% | |=========== | 14% | |============ | 14% | |============ | 15% | |============= | 15% | |============= | 16% | |============== | 16% | |============== | 17% | |============== | 18% | |=============== | 18% | |=============== | 19% | |================ | 19% | |================ | 20% | |================= | 20% | |================= | 21% | |================== | 21% | |================== | 22% | |================== | 23% | |=================== | 23% | |=================== | 24% | |==================== | 24% | |==================== | 25% | |===================== | 25% | |===================== | 26% | |====================== | 26% | |====================== | 27% | |======================= | 27% | |======================= | 28% | |======================= | 29% | |======================== | 29% | |======================== | 30% | |========================= | 30% | |========================= | 31% | |========================== | 31% | |========================== | 32% | |=========================== | 32% | |=========================== | 33% | |=========================== | 34% | |============================ | 34% | |============================ | 35% | |============================= | 35% | |============================= | 36% | |============================== | 36% | |============================== | 37% | |=============================== | 37% | |=============================== | 38% | |================================ | 38% | |================================ | 39% | |================================ | 40% | |================================= | 40% | |================================= | 41% | |================================== | 41% | |================================== | 42% | |=================================== | 42% | |=================================== | 43% | |==================================== | 43% | |==================================== | 44% | |===================================== | 45% | |===================================== | 46% | |====================================== | 46% | |====================================== | 47% | |======================================= | 47% | |======================================= | 48% | |======================================== | 48% | |======================================== | 49% | |========================================= | 49% | |========================================= | 50% | |========================================= | 51% | |========================================== | 51% | |========================================== | 52% | |=========================================== | 52% | |=========================================== | 53% | |============================================ | 53% | |============================================ | 54% | |============================================= | 54% | |============================================= | 55% | |============================================== | 56% | |============================================== | 57% | |=============================================== | 57% | |=============================================== | 58% | |================================================ | 58% | |================================================ | 59% | |================================================= | 59% | |================================================= | 60% | |================================================== | 60% | |================================================== | 61% | |================================================== | 62% | |=================================================== | 62% | |=================================================== | 63% | |==================================================== | 63% | |==================================================== | 64% | |===================================================== | 64% | |===================================================== | 65% | |====================================================== | 65% | |====================================================== | 66% | |======================================================= | 66% | |======================================================= | 67% | |======================================================= | 68% | |======================================================== | 68% | |======================================================== | 69% | |========================================================= | 69% | |========================================================= | 70% | |========================================================== | 70% | |========================================================== | 71% | |=========================================================== | 71% | |=========================================================== | 72% | |=========================================================== | 73% | |============================================================ | 73% | |============================================================ | 74% | |============================================================= | 74% | |============================================================= | 75% | |============================================================== | 75% | |============================================================== | 76% | |=============================================================== | 76% | |=============================================================== | 77% | |================================================================ | 77% | |================================================================ | 78% | |================================================================ | 79% | |================================================================= | 79% | |================================================================= | 80% | |================================================================== | 80% | |================================================================== | 81% | |=================================================================== | 81% | |=================================================================== | 82% | |==================================================================== | 82% | |==================================================================== | 83% | |==================================================================== | 84% | |===================================================================== | 84% | |===================================================================== | 85% | |====================================================================== | 85% | |====================================================================== | 86% | |======================================================================= | 86% | |======================================================================= | 87% | |======================================================================== | 87% | |======================================================================== | 88% | |========================================================================= | 88% | |========================================================================= | 89% | |========================================================================= | 90% | |========================================================================== | 90% | |========================================================================== | 91% | |=========================================================================== | 91% | |=========================================================================== | 92% | |============================================================================ | 92% | |============================================================================ | 93% | |============================================================================= | 93% | |============================================================================= | 94% | |============================================================================= | 95% | |============================================================================== | 95% | |============================================================================== | 96% | |=============================================================================== | 96% | |=============================================================================== | 97% | |================================================================================ | 97% | |================================================================================ | 98% | |================================================================================= | 98% | |================================================================================= | 99% | |==================================================================================| 99% | |==================================================================================| 100%
## Updated the locations of 1 out of 1 missing database files.
## Updated the locations of 16002 out of 16002 missing binary files.
## Updating files in events...
## | | | 0% | | | 1% | |= | 1% | |= | 2% | |== | 2% | |== | 3% | |=== | 3% | |=== | 4% | |==== | 4% | |==== | 5% | |===== | 5% | |===== | 6% | |===== | 7% | |====== | 7% | |====== | 8% | |======= | 8% | |======= | 9% | |======== | 9% | |======== | 10% | |========= | 10% | |========= | 11% | |========= | 12% | |========== | 12% | |========== | 13% | |=========== | 13% | |=========== | 14% | |============ | 14% | |============ | 15% | |============= | 15% | |============= | 16% | |============== | 16% | |============== | 17% | |============== | 18% | |=============== | 18% | |=============== | 19% | |================ | 19% | |================ | 20% | |================= | 20% | |================= | 21% | |================== | 21% | |================== | 22% | |================== | 23% | |=================== | 23% | |=================== | 24% | |==================== | 24% | |==================== | 25% | |===================== | 25% | |===================== | 26% | |====================== | 26% | |====================== | 27% | |======================= | 27% | |======================= | 28% | |======================= | 29% | |======================== | 29% | |======================== | 30% | |========================= | 30% | |========================= | 31% | |========================== | 31% | |========================== | 32% | |=========================== | 32% | |=========================== | 33% | |=========================== | 34% | |============================ | 34% | |============================ | 35% | |============================= | 35% | |============================= | 36% | |============================== | 36% | |============================== | 37% | |=============================== | 37% | |=============================== | 38% | |================================ | 38% | |================================ | 39% | |================================ | 40% | |================================= | 40% | |================================= | 41% | |================================== | 41% | |================================== | 42% | |=================================== | 42% | |=================================== | 43% | |==================================== | 43% | |==================================== | 44% | |===================================== | 45% | |===================================== | 46% | |====================================== | 46% | |====================================== | 47% | |======================================= | 47% | |======================================= | 48% | |======================================== | 48% | |======================================== | 49% | |========================================= | 49% | |========================================= | 50% | |========================================= | 51% | |========================================== | 51% | |========================================== | 52% | |=========================================== | 52% | |=========================================== | 53% | |============================================ | 53% | |============================================ | 54% | |============================================= | 54% | |============================================= | 55% | |============================================== | 56% | |============================================== | 57% | |=============================================== | 57% | |=============================================== | 58% | |================================================ | 58% | |================================================ | 59% | |================================================= | 59% | |================================================= | 60% | |================================================== | 60% | |================================================== | 61% | |================================================== | 62% | |=================================================== | 62% | |=================================================== | 63% | |==================================================== | 63% | |==================================================== | 64% | |===================================================== | 64% | |===================================================== | 65% | |====================================================== | 65% | |====================================================== | 66% | |======================================================= | 66% | |======================================================= | 67% | |======================================================= | 68% | |======================================================== | 68% | |======================================================== | 69% | |========================================================= | 69% | |========================================================= | 70% | |========================================================== | 70% | |========================================================== | 71% | |=========================================================== | 71% | |=========================================================== | 72% | |=========================================================== | 73% | |============================================================ | 73% | |============================================================ | 74% | |============================================================= | 74% | |============================================================= | 75% | |============================================================== | 75% | |============================================================== | 76% | |=============================================================== | 76% | |=============================================================== | 77% | |================================================================ | 77% | |================================================================ | 78% | |================================================================ | 79% | |================================================================= | 79% | |================================================================= | 80% | |================================================================== | 80% | |================================================================== | 81% | |=================================================================== | 81% | |=================================================================== | 82% | |==================================================================== | 82% | |==================================================================== | 83% | |==================================================================== | 84% | |===================================================================== | 84% | |===================================================================== | 85% | |====================================================================== | 85% | |====================================================================== | 86% | |======================================================================= | 86% | |======================================================================= | 87% | |======================================================================== | 87% | |======================================================================== | 88% | |========================================================================= | 88% | |========================================================================= | 89% | |========================================================================= | 90% | |========================================================================== | 90% | |========================================================================== | 91% | |=========================================================================== | 91% | |=========================================================================== | 92% | |============================================================================ | 92% | |============================================================================ | 93% | |============================================================================= | 93% | |============================================================================= | 94% | |============================================================================= | 95% | |============================================================================== | 95% | |============================================================================== | 96% | |=============================================================================== | 96% | |=============================================================================== | 97% | |================================================================================ | 97% | |================================================================================ | 98% | |================================================================================= | 98% | |================================================================================= | 99% | |==================================================================================| 99% | |==================================================================================| 100%
Updated file paths to binaries in databases for F:/gcp_upload/2_Acoustic-Studies/CalCurCEAS_020/CalCurCEAS_2024_020_Filtered.rdata and F:/gcp_upload/2_Acoustic-Studies/CalCurCEAS_020/CalCurCEAS_2024_020_ch1.rdata
To be used for manual scoring based on report figures.
# set up output data frame
evTable <- data.frame(drift = character(nEvents), id = character(nEvents),
species = character(nEvents), numClicks = numeric(nEvents))
# populate with drift string and event names
evTable$drift <- paste0(params$mission, '_', params$drift)
evTable$id <- names(PAMpal::events(detsFilt))
# get all click data
allClks <- PAMpal::getClickData(detsFilt)
# get the number of clicks for each event
for (iEvent in c(1:nEventsFilt)){
evTable$numClicks[iEvent] <- length(which(allClks$eventId == evTable$id[iEvent]))
}
# keep only rows/events with at least 200 clicks
evTable <- evTable[which(evTable$numClicks >199),]
# add column for keeping/removing based on median peak frequency
evTable$keep <- FALSE # set all to false, will mark keepers as TRUE in loop
# save event table as CSV
write.csv(evTable, file = file.path(params$path_dets,
paste0('eventTable_', params$mission, '_',
params$drift, '_', Sys.Date(),'.csv')))
3203 events (files) in drift. 583 events have at least 200 clicks. Additional events may be removed if the median peak frequency of all high SNR clicks is less than 6 kHz. The final number of events can be found at the very end of the report.
Load the reference spectra for plotting, if set with
refSpecList.
# refSpecList is specified in YAML params. Can be one or multiple species
# for single species specify as char string without quotations e.g., refSpecPc
# for multiple species, specify with call to R and c()
# e.g., !r c('meanSpecGm', 'refSpecPc_LLHARP')
refSpecs <- NULL
if (!is.null(refSpecList)){
refSpecs = list()
for (rs in refSpecList){
refSpecs[[rs]] = read.csv(file.path(path_to_refSpec, paste0(rs, '.csv')))
}
}
Loop through each detection event (n = 583) create plots and a table of summary statistics for click and whistle detections. This process uses AcousticStudy objects that have detection data for each event, and also pulls information from the Pamguard binaries associated with each AcousticStudy.
Click plots (other than the SNR plot) only show clicks with SNRs >= 15 dB.
for (iEvent in c(1:nEventsFilt)){
# iEvent = 6 # for testing
# ("pagebreak \n")
# extract this event UID string
eventList <- PAMpal::events(detsFilt)
eventUID <- names(eventList)[iEvent]
###### summarize clicks ######
cl <- clickSummary(detsFilt, eventUID)
if ((cl$nClicks > 199) && median(cl$goodClicks$peak, na.rm = TRUE) >= 6){
# keep this in evTable
evTable$keep[evTable$id == eventUID] <- TRUE
evTable$medPeakFrq[evTable$id == eventUID] <- median(cl$goodClicks$peak,
na.rm = TRUE)
# set header for this event and print time
cat('\n\n#### Event ID: ', names(eventList)[iEvent], '\n')
cat('Time: ', format(eventList[[eventUID]]@ancillary$grouping$start,
'%Y-%m-%d %H:%M%Z'), ' to ',
format(eventList[[eventUID]]@ancillary$grouping$end, '%Y-%m-%d %H:%M%Z'),
'\n')
cat('\nEvent contains', nrow(PAMpal::getClickData(dets[[eventUID]])),
'original clicks,', paste0('**', cl$nClicks), 'valid clicks** after',
'filtering.\n')
cat('\n')
###### summarize whistles ######
# wl <- whistleSummary(detsFilt, eventUID)
#
# cat('\nEvent contains', paste0('**', wl$nWhistles), 'whistles**.\n')
# cat('\n')
###### click plots and table ######
cat('\n##### Click plots and table\n')
cat('\n SNR histogram includes all filtered clicks. Other plots contain only',
'clicks with SNR >= 15 dB', paste0('(**n = ', cl$nGoodClicks, ' clicks**)'),
'.\n')
cat('\n')
# if any clicks...
if (cl$nClicks > 0){
# histogram of all clicks and SNR >= 15 dB cut off
xMax <- max(c(15, ceiling(max(cl$snr)) + 2)) # whichever is bigger
if (any(!is.na(cl$snr))){
hist(cl$snr, breaks = seq(from = floor(min(cl$snr)),
to = xMax, by = 2),
main = 'Click SNR', sub = '(all filtered clicks)', xlab = 'SNR')
abline(v = 15, lty = 2, lwd = 2, col = 'red4')
}
}
# if sufficient good clicks...
if (cl$nGoodClicks > 0) {
# histogram of click durations - good clicks only
subStr <- paste0('(high SNR clicks, n=', cl$nGoodClicks, ')')
hist(cl$goodClicks$duration,
breaks = seq(from = 0, to = max(cl$goodClicks$duration) + 100,
by = 100), main = 'Click duration', sub = subStr,
xlab = expression(paste('duration [', mu, 's]')))
abline(v = median(cl$goodClicks$duration), lty = 2, lwd = 2, col = 'black')
legend('topright', legend = 'median', lty = 2, lwd = 2, col = 'black')
cat('\n')
cat('\n')
# Calculate and plot Concatenated and Mean Spectrum for clicks w/ max SNR > 15dB
# NB: JLKM uses more exaggerated SNR (>40 dB) for BWs bc actual spectra may
# be noisy for single clicks
# reducing wl can give more accurate noise floor but 'smoother' spectrum
# increasing wl will give more exact spectrum but may exclude too many
# clicks based on SNR (noise measure will overlap with click output; noise
# is just measured as same wl from start of binary snippet and binaries
# binary snippets are v short)
# Trial and error - 256 works ok for LLHARP data = 1.28 ms
# NB: JLKM uses 500 for beaked whales with samp rate 288k
avgSpec <- PAMpal::calculateAverageSpectra(detsFilt, evNum = eventUID, wl = 256,
channel = params$channelNum, norm = TRUE,
noise = TRUE, sort = TRUE, snr = 15,
plot = c(TRUE, FALSE))
# concatenated spectrogram will get plotted within calculation
# avg spectrum plots separately (bc adding stuff)
if (!is.null(avgSpec)) {
# Peak freq as calculated by calculateAvgerageSpectra -for subtitle
peakFreq <- round(avgSpec$freq[which.max(avgSpec$avgSpec)]/1000, 2)
plot(1, type = 'n', xlim = c(0, 100), ylim = c(min(avgSpec$avgSpec), 0),
xlab = 'Frequency (kHz)', ylab = 'Normalized Magnitude (dB)',
main = 'Average Spectrum', sub = paste0('Peak: ', peakFreq, 'kHz'))
# add grid lines for frequency at 10 kHz intervals
for (iline in ((0:20)*10)) {lines(c(iline,iline), c(-100,10), col="gray")}
# add template spectra
if (length(refSpecs) > 0){
rsCols <- rsPalette[1:length(refSpecs)]
for (rs in 1:length(refSpecs)){
rsTmp <- refSpecList[rs]
rsNorm <- refSpecs[[rsTmp]]
rsMax <- max(rsNorm$dB)
rsNorm$dBNorm <- rsNorm$dB - rsMax
lines(rsNorm$frq, rsNorm$dBNorm, col = rsCols[rs], lwd = 2)
}
}
# plot noise
lines(avgSpec$freq/1000, avgSpec$avgNoise, lty = 3, lwd = 2)
# plot avg spectrum
lines(avgSpec$freq/1000, avgSpec$avgSpec, lty = 2, lwd = 3)
# also plot median spectrum
medSpec <- 20*log10(apply(avgSpec$allSpec, 1, function(y) {
median(10^(y/20), na.rm = TRUE)}))
medSpecNorm <- medSpec - max(medSpec, na.rm = TRUE)
lines(avgSpec$freq/1000, medSpecNorm, lty = 1, lwd = 3)
# add legend
if (length(refSpecs) > 0){
legend(x = 'topright', c(refSpecSp, 'Avg.', 'Med.', 'Noise'),
lty = c(rep(1, length(refSpecs)), 2, 1, 3),
lwd = c(rep(1, length(refSpecs)), 2, 3, 2),
col = c(rsCols, 'black', 'black', 'black'), cex = 0.8)
} else if (length(refSpecs) == 0){
legend(x = 'topright', c('Avg.', 'Med.', 'Noise'),
lty = c(2, 1, 3), lwd = c(2, 3, 2),
col = c('black', 'black', 'black'), cex = 0.8)
}
}
# NB: JLKM BW approach has additional plots here:
# IPI
# Waveform of strongest click
# Wigner plot
# We are not including those here because not really useful for FKW, but if
# interested in adding back in, see:
# https://github.com/jlkeating/PAMGuard_Event_Code
cat('\n')
cat('\n')
# create median stats table for clicks with -15 dB TK noise cut off
cat('\n\n Median statistics for', cl$nGoodClicks, 'high SNR clicks with',
'SNR >= 15 dB.')
cat('\n')
cat(knitr::kable(cl$mt, format = 'html', caption = '', align = 'l',
row.names = FALSE) %>%
kableExtra::kable_styling(bootstrap_options = c('basic', 'condensed'),
full_width = F))
} else { # no good clicks so no summary plots/table
cat('\nNo clicks of sufficient SNR to plot or summarize.\n')
}
###### whistle plots and table ######
#
# cat('\n##### Whistle plots and table\n')
#
# # if whistles present ...
# if (wl$nWhistles > 0) {
# # create median stats table for all whistles
# # cat('\n\n Median statistics for', wl$nWhistles, 'whistles.')
# # cat('\n')
#
# # plot whistle contours
# # map the needed binary files
# binFiles <- dets@events[[eventUID]]@files$binaries
# wmFileIdx <- grep(pattern = '^.*WhistlesMoans_Whistle_and_Moan.*\\.pgdf$',
# binFiles)
# wmFiles <- dets@events[[eventUID]]@files$binaries[wmFileIdx]
#
# # load them
# whBin <- loadMultiBinaries(wmFiles)
# # trim to just the event time
# whBinEv <- whBin[names(whBin) %in%
# detsFilt[[eventUID]]$Whistle_and_Moan_Detector$UID]
#
# # #plot - ggplot version/functionized
# # pc <- plotContours(whBinEv)
# # # print(pc)
# # pc + ggtitle(eventUID)
# #
#
# # get plot limits
# # xMax <- 0
# # yMax <- 0
# # for (wc in 1:length(names(whBinEv))){
# # df <- data.frame(time = whBinEv[[wc]]$time - whBinEv[[wc]]$time[1],
# # freq = whBinEv[[wc]]$freq/1000)
# # xMaxTmp <- max(df$time)
# # yMaxTmp <- max(df$freq)
# # if (xMaxTmp > xMax){xMax <- xMaxTmp}
# # if (yMaxTmp > yMax){yMax <- yMaxTmp}
# # }
# # or use standard max lims
# xMax <- 1.5
# yMax <- 20
#
# # plot each line
# plot(1, type = 'n', xlim = c(0, round(xMax,2)), ylim = c(0, round(yMax,-1)),
# xlab = 'Time (s)', ylab = 'Frequency (kHz)',
# main = 'Whistle Contours')
# # add grid lines for frequency at 0.125 s and 5 kHz intervals
# for (iline in (seq(0,2,0.125))) {lines(c(iline,iline), c(-10,60),
# col="lightgray")}
# for (iline in (seq(0,50,5))) {lines(c(-0.5,2.5), c(iline,iline),
# col="lightgray")}
# # loop through each contour
# for (wc in 1:length(names(whBinEv))){
# df <- data.frame(time = whBinEv[[wc]]$time - whBinEv[[wc]]$time[1],
# freq = whBinEv[[wc]]$freq/1000)
# lines(df$time, df$freq, col = rgb(0,0,0,0.4))
# }
#
# # plot histogram of median frequency
# hist(wl$wh$freqMedian/1000,
# breaks = seq(0, ceiling(max(wl$wh$freqMedian/1000)) + 1, 1),
# main = 'Histogram of whistle median frequency',
# xlab = 'Median frequency (kHz)')
#
# cat('\n')
# cat('\n')
#
# cat('Median statistics for n = ', wl$nWhistles, 'whistles.\n')
# # create median stats table for all whistles
# cat(knitr::kable(wl$mt, format = 'html', caption = '', align = 'l',
# row.names = FALSE) %>%
# kable_styling(bootstrap_options = c('basic', 'condensed'),
# full_width = F))
#
# } else {
# cat('\nNo whistles present.\n')
# }
cat('\n')
cat('\n\n --- \n\n')
cat('\n')
}# num clicks/peak freq check
} # loop
Time: 2024-10-26 23:42UTC to 2024-10-26 23:48UTC
Event contains 712 original clicks, 356 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 156 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 11.2 |
| Median 3dB Center Frequency [kHz] | 11 |
| Median 10dB Center Frequency [kHz] | 11.1 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.01 (9.93 - 11.4) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.23 (8.35 - 12.7) |
| Median duration [μs] (25-75 percentile) | 177 (100 - 1000) |
Time: 2024-10-26 23:48UTC to 2024-10-26 23:54UTC
Event contains 488 original clicks, 244 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 52 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 10.6 |
| Median 3dB Center Frequency [kHz] | 8.78 |
| Median 10dB Center Frequency [kHz] | 8.87 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.582 ( 8.5 - 9.03) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 1.27 (7.62 - 9.77) |
| Median duration [μs] (25-75 percentile) | 74 (0 - 1000) |
Time: 2024-10-27 08:36UTC to 2024-10-27 08:42UTC
Event contains 1136 original clicks, 568 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 379 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.96 |
| Median 10dB Center Frequency [kHz] | 5.86 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.2 (5.32 - 6.57) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.64 (4.46 - 7.18) |
| Median duration [μs] (25-75 percentile) | 766 (297 - 1197) |
Time: 2024-10-27 08:48UTC to 2024-10-27 08:54UTC
Event contains 400 original clicks, 200 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 91 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.71 |
| Median 10dB Center Frequency [kHz] | 5.73 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1 (5.12 - 6.35) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.61 (4.31 - 7.14) |
| Median duration [μs] (25-75 percentile) | 446 (160 - 1000) |
Time: 2024-10-27 08:54UTC to 2024-10-27 09:00UTC
Event contains 584 original clicks, 292 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 153 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6 |
| Median 10dB Center Frequency [kHz] | 5.99 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.04 (5.47 - 6.51) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.54 ( 4.6 - 7.26) |
| Median duration [μs] (25-75 percentile) | 422 (203 - 1014) |
Time: 2024-10-27 09:00UTC to 2024-10-27 09:06UTC
Event contains 1302 original clicks, 651 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 389 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6 |
| Median 10dB Center Frequency [kHz] | 5.9 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.11 (5.37 - 6.65) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.78 (4.45 - 7.31) |
| Median duration [μs] (25-75 percentile) | 678 (323 - 1152) |
Time: 2024-10-27 09:12UTC to 2024-10-27 09:18UTC
Event contains 410 original clicks, 205 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 72 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.05 |
| Median 10dB Center Frequency [kHz] | 6 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.939 (5.52 - 6.58) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.23 (4.76 - 7.22) |
| Median duration [μs] (25-75 percentile) | 566 (216 - 1142) |
Time: 2024-10-27 09:18UTC to 2024-10-27 09:24UTC
Event contains 1198 original clicks, 599 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 345 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.05 |
| Median 10dB Center Frequency [kHz] | 6.08 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.16 (5.31 - 6.86) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.92 (4.52 - 7.66) |
| Median duration [μs] (25-75 percentile) | 636 (276 - 1118) |
Time: 2024-10-27 09:24UTC to 2024-10-27 09:30UTC
Event contains 502 original clicks, 251 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 96 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 9.2 |
| Median 3dB Center Frequency [kHz] | 8.59 |
| Median 10dB Center Frequency [kHz] | 9.21 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.947 (8.26 - 9.16) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.33 (7.17 - 10.4) |
| Median duration [μs] (25-75 percentile) | 649 (109 - 1169) |
Time: 2024-10-27 09:30UTC to 2024-10-27 09:36UTC
Event contains 632 original clicks, 316 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 83 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.65 |
| Median 10dB Center Frequency [kHz] | 7.52 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.753 (6.75 - 8.14) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.11 ( 6.1 - 8.93) |
| Median duration [μs] (25-75 percentile) | 469 (20 - 1169) |
Time: 2024-10-27 09:36UTC to 2024-10-27 09:42UTC
Event contains 688 original clicks, 344 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 121 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.57 |
| Median 10dB Center Frequency [kHz] | 7.76 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.879 (6.94 - 8.33) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.32 (5.64 - 9.26) |
| Median duration [μs] (25-75 percentile) | 407 (31 - 1095) |
Time: 2024-10-27 09:48UTC to 2024-10-27 09:54UTC
Event contains 838 original clicks, 419 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 218 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.07 |
| Median 10dB Center Frequency [kHz] | 5.95 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.03 (5.46 - 6.58) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.51 (4.62 - 7.13) |
| Median duration [μs] (25-75 percentile) | 923 (452 - 1486) |
Time: 2024-10-27 11:12UTC to 2024-10-27 11:18UTC
Event contains 2138 original clicks, 1069 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 603 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.83 |
| Median 10dB Center Frequency [kHz] | 5.79 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.957 (5.24 - 6.4) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.31 ( 4.6 - 6.98) |
| Median duration [μs] (25-75 percentile) | 889 (378 - 1436) |
Time: 2024-10-27 11:30UTC to 2024-10-27 11:36UTC
Event contains 630 original clicks, 315 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 157 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.78 |
| Median 10dB Center Frequency [kHz] | 5.78 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.969 (5.27 - 6.31) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.37 (4.53 - 7.2) |
| Median duration [μs] (25-75 percentile) | 920 (370 - 1382) |
Time: 2024-10-27 11:54UTC to 2024-10-27 12:00UTC
Event contains 534 original clicks, 267 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 121 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.79 |
| Median 10dB Center Frequency [kHz] | 5.78 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.973 (5.23 - 6.26) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.42 (4.45 - 7.11) |
| Median duration [μs] (25-75 percentile) | 459 (107 - 1000) |
Time: 2024-10-27 12:06UTC to 2024-10-27 12:12UTC
Event contains 754 original clicks, 377 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 241 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.77 |
| Median 10dB Center Frequency [kHz] | 6.41 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.14 (5.07 - 6.45) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.74 (4.41 - 8.35) |
| Median duration [μs] (25-75 percentile) | 746 (328 - 1090) |
Time: 2024-10-27 12:12UTC to 2024-10-27 12:18UTC
Event contains 946 original clicks, 473 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 262 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.89 |
| Median 10dB Center Frequency [kHz] | 6.04 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.13 (5.28 - 6.51) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.06 (4.48 - 7.62) |
| Median duration [μs] (25-75 percentile) | 756 (277 - 1255) |
Time: 2024-10-27 12:18UTC to 2024-10-27 12:24UTC
Event contains 1044 original clicks, 522 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 287 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.94 |
| Median 10dB Center Frequency [kHz] | 5.81 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.1 ( 5.3 - 6.48) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.63 (4.46 - 7.16) |
| Median duration [μs] (25-75 percentile) | 764 (331 - 1223) |
Time: 2024-10-27 12:24UTC to 2024-10-27 12:30UTC
Event contains 688 original clicks, 344 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 179 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.13 |
| Median 10dB Center Frequency [kHz] | 6.14 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.04 (5.58 - 6.64) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.58 (4.65 - 7.42) |
| Median duration [μs] (25-75 percentile) | 516 (164 - 1152) |
Time: 2024-10-27 12:48UTC to 2024-10-27 12:54UTC
Event contains 788 original clicks, 394 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 115 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.08 |
| Median 10dB Center Frequency [kHz] | 6.15 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.85 (5.58 - 6.55) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.07 (4.94 - 7.25) |
| Median duration [μs] (25-75 percentile) | 751 (192 - 1251) |
Time: 2024-10-27 12:54UTC to 2024-10-27 13:00UTC
Event contains 714 original clicks, 357 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 183 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.07 |
| Median 10dB Center Frequency [kHz] | 5.91 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.03 ( 5.4 - 6.67) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.56 (4.46 - 7.35) |
| Median duration [μs] (25-75 percentile) | 563 (249 - 1104) |
Time: 2024-10-27 16:12UTC to 2024-10-27 16:18UTC
Event contains 410 original clicks, 205 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 198 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.77 |
| Median 10dB Center Frequency [kHz] | 7.65 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.54 (7.04 - 8.6) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.64 (5.46 - 9.61) |
| Median duration [μs] (25-75 percentile) | 252 (100 - 466) |
Time: 2024-10-27 16:18UTC to 2024-10-27 16:24UTC
Event contains 444 original clicks, 222 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 218 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.91 |
| Median 10dB Center Frequency [kHz] | 7.78 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.45 (7.22 - 8.65) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.38 ( 6 - 9.6) |
| Median duration [μs] (25-75 percentile) | 250 (100 - 453) |
Time: 2024-10-27 19:24UTC to 2024-10-27 19:30UTC
Event contains 970 original clicks, 485 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 190 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.8 |
| Median 3dB Center Frequency [kHz] | 8.73 |
| Median 10dB Center Frequency [kHz] | 8.91 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.26 (8.29 - 9.28) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.04 (5.44 - 12) |
| Median duration [μs] (25-75 percentile) | 111 (14 - 1000) |
Time: 2024-10-28 05:54UTC to 2024-10-28 06:00UTC
Event contains 726 original clicks, 363 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 223 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.04 |
| Median 10dB Center Frequency [kHz] | 5.97 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.03 (5.49 - 6.57) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.31 (4.83 - 7.17) |
| Median duration [μs] (25-75 percentile) | 832 (390 - 1172) |
Time: 2024-10-28 08:06UTC to 2024-10-28 08:12UTC
Event contains 482 original clicks, 241 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 143 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.28 |
| Median 10dB Center Frequency [kHz] | 6.23 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.15 (5.66 - 6.94) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.71 (4.84 - 7.64) |
| Median duration [μs] (25-75 percentile) | 206 (43 - 1000) |
Time: 2024-10-28 08:12UTC to 2024-10-28 08:18UTC
Event contains 730 original clicks, 365 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 229 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.21 |
| Median 10dB Center Frequency [kHz] | 6.21 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.18 (5.59 - 6.84) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.9 (4.59 - 7.74) |
| Median duration [μs] (25-75 percentile) | 222 (107 - 1000) |
Time: 2024-10-28 08:18UTC to 2024-10-28 08:24UTC
Event contains 2324 original clicks, 1162 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 703 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.23 |
| Median 10dB Center Frequency [kHz] | 6.25 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.16 (5.46 - 6.91) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.95 (4.58 - 7.82) |
| Median duration [μs] (25-75 percentile) | 292 (107 - 1000) |
Time: 2024-10-28 08:24UTC to 2024-10-28 08:30UTC
Event contains 1208 original clicks, 604 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 294 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.07 |
| Median 10dB Center Frequency [kHz] | 6.03 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.09 (5.43 - 6.68) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.67 (4.61 - 7.42) |
| Median duration [μs] (25-75 percentile) | 172 (29 - 370) |
Time: 2024-10-28 09:12UTC to 2024-10-28 09:18UTC
Event contains 548 original clicks, 274 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 129 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.7 |
| Median 10dB Center Frequency [kHz] | 5.77 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.952 (5.12 - 6.29) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.23 (4.53 - 6.95) |
| Median duration [μs] (25-75 percentile) | 255 (18 - 1000) |
Time: 2024-10-28 09:30UTC to 2024-10-28 09:36UTC
Event contains 1014 original clicks, 507 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 243 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.01 |
| Median 10dB Center Frequency [kHz] | 5.88 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1 (5.35 - 6.57) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.47 (4.58 - 7.2) |
| Median duration [μs] (25-75 percentile) | 414 (100 - 1000) |
Time: 2024-10-28 09:36UTC to 2024-10-28 09:42UTC
Event contains 528 original clicks, 264 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 114 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.9 |
| Median 10dB Center Frequency [kHz] | 6.01 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.05 (5.33 - 6.55) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.64 (4.63 - 7.28) |
| Median duration [μs] (25-75 percentile) | 295 (100 - 1000) |
Time: 2024-10-28 10:18UTC to 2024-10-28 10:24UTC
Event contains 828 original clicks, 414 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 234 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.14 |
| Median 10dB Center Frequency [kHz] | 6.16 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.18 (5.52 - 6.71) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.88 (4.74 - 7.62) |
| Median duration [μs] (25-75 percentile) | 400 (171 - 1000) |
Time: 2024-10-28 10:24UTC to 2024-10-28 10:30UTC
Event contains 478 original clicks, 239 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 117 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.13 |
| Median 10dB Center Frequency [kHz] | 6.25 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.06 (5.65 - 6.69) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.88 (4.81 - 7.69) |
| Median duration [μs] (25-75 percentile) | 339 (128 - 1000) |
Time: 2024-10-28 10:42UTC to 2024-10-28 10:48UTC
Event contains 624 original clicks, 312 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 215 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6 |
| Median 10dB Center Frequency [kHz] | 5.95 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.11 (5.37 - 6.59) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.62 (4.56 - 7.3) |
| Median duration [μs] (25-75 percentile) | 235 (100 - 1000) |
Time: 2024-10-28 11:42UTC to 2024-10-28 11:48UTC
Event contains 3960 original clicks, 1980 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1340 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.04 |
| Median 10dB Center Frequency [kHz] | 5.99 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.13 (5.42 - 6.66) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.58 (4.61 - 7.33) |
| Median duration [μs] (25-75 percentile) | 527 (209 - 1028) |
Time: 2024-10-28 11:48UTC to 2024-10-28 11:54UTC
Event contains 3904 original clicks, 1952 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1158 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.15 |
| Median 10dB Center Frequency [kHz] | 6.08 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.05 (5.56 - 6.82) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.51 (4.73 - 7.49) |
| Median duration [μs] (25-75 percentile) | 662 (254 - 1185) |
Time: 2024-10-28 11:54UTC to 2024-10-28 12:00UTC
Event contains 4410 original clicks, 2205 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1175 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.05 |
| Median 10dB Center Frequency [kHz] | 6 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.02 (5.47 - 6.66) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.44 (4.67 - 7.33) |
| Median duration [μs] (25-75 percentile) | 1053 (1000 - 1664) |
Time: 2024-10-28 13:06UTC to 2024-10-28 13:12UTC
Event contains 750 original clicks, 375 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 221 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.83 |
| Median 10dB Center Frequency [kHz] | 5.73 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.01 (5.28 - 6.43) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.46 ( 4.4 - 6.99) |
| Median duration [μs] (25-75 percentile) | 1030 (313 - 1851) |
Time: 2024-10-28 17:36UTC to 2024-10-28 17:42UTC
Event contains 488 original clicks, 244 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 33 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 10 |
| Median 3dB Center Frequency [kHz] | 9.02 |
| Median 10dB Center Frequency [kHz] | 8.97 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.577 (8.71 - 9.33) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 1.34 (8.17 - 10.3) |
| Median duration [μs] (25-75 percentile) | 96 (47 - 167) |
Time: 2024-10-29 03:12UTC to 2024-10-29 03:18UTC
Event contains 874 original clicks, 437 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 177 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.19 |
| Median 10dB Center Frequency [kHz] | 6.16 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.05 (5.64 - 6.72) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.82 (4.72 - 7.52) |
| Median duration [μs] (25-75 percentile) | 26 (0 - 100) |
Time: 2024-10-30 02:48UTC to 2024-10-30 02:54UTC
Event contains 890 original clicks, 445 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 253 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.28 |
| Median 10dB Center Frequency [kHz] | 6.23 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.09 (5.69 - 6.92) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.59 (4.88 - 7.59) |
| Median duration [μs] (25-75 percentile) | 125 (3 - 261) |
Time: 2024-10-30 08:24UTC to 2024-10-30 08:30UTC
Event contains 492 original clicks, 246 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 170 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.56 |
| Median 10dB Center Frequency [kHz] | 6.28 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.11 (5.95 - 7.17) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.99 (4.77 - 7.82) |
| Median duration [μs] (25-75 percentile) | 87 (0 - 454) |
Time: 2024-10-30 08:30UTC to 2024-10-30 08:36UTC
Event contains 1392 original clicks, 696 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 489 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.46 |
| Median 10dB Center Frequency [kHz] | 6.28 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.05 (5.86 - 7.06) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.72 (4.81 - 7.7) |
| Median duration [μs] (25-75 percentile) | 482 (107 - 1053) |
Time: 2024-10-30 08:36UTC to 2024-10-30 08:42UTC
Event contains 1526 original clicks, 763 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 492 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.39 |
| Median 10dB Center Frequency [kHz] | 6.21 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.06 (5.83 - 7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.63 (4.87 - 7.62) |
| Median duration [μs] (25-75 percentile) | 654 (138 - 1234) |
Time: 2024-10-30 08:42UTC to 2024-10-30 08:48UTC
Event contains 1498 original clicks, 749 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 525 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.03 |
| Median 10dB Center Frequency [kHz] | 5.98 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.04 (5.43 - 6.6) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.46 (4.68 - 7.19) |
| Median duration [μs] (25-75 percentile) | 719 (242 - 1384) |
Time: 2024-10-30 09:24UTC to 2024-10-30 09:30UTC
Event contains 756 original clicks, 378 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 293 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.22 |
| Median 10dB Center Frequency [kHz] | 6.06 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.15 (5.56 - 6.84) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.69 (4.72 - 7.39) |
| Median duration [μs] (25-75 percentile) | 414 (154 - 1000) |
Time: 2024-10-30 09:30UTC to 2024-10-30 09:36UTC
Event contains 1828 original clicks, 914 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 641 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.12 |
| Median 10dB Center Frequency [kHz] | 5.97 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.17 (5.39 - 6.82) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.96 (4.38 - 7.5) |
| Median duration [μs] (25-75 percentile) | 279 (104 - 1000) |
Time: 2024-10-30 09:36UTC to 2024-10-30 09:42UTC
Event contains 3258 original clicks, 1629 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1180 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.93 |
| Median 10dB Center Frequency [kHz] | 5.82 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.06 (5.29 - 6.51) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.54 (4.47 - 7.12) |
| Median duration [μs] (25-75 percentile) | 538 (229 - 1000) |
Time: 2024-10-30 10:06UTC to 2024-10-30 10:12UTC
Event contains 1744 original clicks, 872 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 645 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.95 |
| Median 10dB Center Frequency [kHz] | 5.82 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.986 (5.42 - 6.49) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.43 ( 4.5 - 7.08) |
| Median duration [μs] (25-75 percentile) | 899 (331 - 1408) |
Time: 2024-10-30 10:18UTC to 2024-10-30 10:24UTC
Event contains 1056 original clicks, 528 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 416 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.08 |
| Median 10dB Center Frequency [kHz] | 5.93 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.06 (5.54 - 6.59) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.43 (4.63 - 7.24) |
| Median duration [μs] (25-75 percentile) | 529 (246 - 1000) |
Time: 2024-10-30 10:24UTC to 2024-10-30 10:30UTC
Event contains 1490 original clicks, 745 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 564 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.34 |
| Median 10dB Center Frequency [kHz] | 6.21 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.08 (5.76 - 6.9) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.46 (4.77 - 7.53) |
| Median duration [μs] (25-75 percentile) | 622 (218 - 1031) |
Time: 2024-10-30 10:30UTC to 2024-10-30 10:36UTC
Event contains 1508 original clicks, 754 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 566 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.92 |
| Median 10dB Center Frequency [kHz] | 5.8 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.08 (5.39 - 6.47) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.56 (4.49 - 7.24) |
| Median duration [μs] (25-75 percentile) | 722 (274 - 1151) |
Time: 2024-10-30 10:36UTC to 2024-10-30 10:42UTC
Event contains 1314 original clicks, 657 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 447 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.94 |
| Median 10dB Center Frequency [kHz] | 5.85 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.02 ( 5.4 - 6.48) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.28 (4.52 - 7.04) |
| Median duration [μs] (25-75 percentile) | 605 (145 - 1151) |
Time: 2024-10-30 10:42UTC to 2024-10-30 10:48UTC
Event contains 2046 original clicks, 1023 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 735 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.02 |
| Median 10dB Center Frequency [kHz] | 5.98 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.988 (5.48 - 6.57) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.38 (4.68 - 7.24) |
| Median duration [μs] (25-75 percentile) | 550 (194 - 1113) |
Time: 2024-10-30 10:48UTC to 2024-10-30 10:54UTC
Event contains 2128 original clicks, 1064 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 796 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.96 |
| Median 10dB Center Frequency [kHz] | 5.79 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.01 (5.35 - 6.52) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.41 (4.47 - 7.11) |
| Median duration [μs] (25-75 percentile) | 675 (274 - 1202) |
Time: 2024-10-30 10:54UTC to 2024-10-30 11:00UTC
Event contains 1094 original clicks, 547 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 393 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.05 |
| Median 10dB Center Frequency [kHz] | 5.97 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.985 (5.44 - 6.57) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.44 (4.52 - 7.27) |
| Median duration [μs] (25-75 percentile) | 665 (240 - 1230) |
Time: 2024-10-31 01:42UTC to 2024-10-31 01:48UTC
Event contains 430 original clicks, 215 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 51 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 12.4 |
| Median 3dB Center Frequency [kHz] | 11.4 |
| Median 10dB Center Frequency [kHz] | 11.2 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.593 ( 11 - 11.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 1.79 (10.3 - 12.1) |
| Median duration [μs] (25-75 percentile) | 47 (34 - 100) |
Time: 2024-10-31 01:48UTC to 2024-10-31 01:54UTC
Event contains 578 original clicks, 289 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 42 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 12.6 |
| Median 3dB Center Frequency [kHz] | 12 |
| Median 10dB Center Frequency [kHz] | 12 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.602 (11.5 - 12.2) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 1.4 ( 11 - 12.8) |
| Median duration [μs] (25-75 percentile) | 132 (100 - 375) |
Time: 2024-10-31 07:48UTC to 2024-10-31 07:54UTC
Event contains 406 original clicks, 203 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 107 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.76 |
| Median 10dB Center Frequency [kHz] | 5.74 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.06 (5.04 - 6.42) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.61 (4.37 - 7.15) |
| Median duration [μs] (25-75 percentile) | 130 (10 - 441) |
Time: 2024-10-31 08:24UTC to 2024-10-31 08:30UTC
Event contains 570 original clicks, 285 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 111 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.86 |
| Median 10dB Center Frequency [kHz] | 5.81 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.975 (5.35 - 6.44) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.45 ( 4.5 - 7.12) |
| Median duration [μs] (25-75 percentile) | 258 (30 - 1000) |
Time: 2024-10-31 08:30UTC to 2024-10-31 08:36UTC
Event contains 510 original clicks, 255 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 81 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.33 |
| Median 10dB Center Frequency [kHz] | 5.91 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.811 (5.77 - 6.86) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.18 (4.63 - 7.32) |
| Median duration [μs] (25-75 percentile) | 107 (0 - 412) |
Time: 2024-10-31 20:06UTC to 2024-10-31 20:12UTC
Event contains 534 original clicks, 267 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 55 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 12.4 |
| Median 3dB Center Frequency [kHz] | 11.3 |
| Median 10dB Center Frequency [kHz] | 11.4 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.602 ( 11 - 11.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 1.28 (10.4 - 12.2) |
| Median duration [μs] (25-75 percentile) | 78 (0 - 220) |
Time: 2024-10-31 20:12UTC to 2024-10-31 20:18UTC
Event contains 798 original clicks, 399 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 49 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 10.8 |
| Median 3dB Center Frequency [kHz] | 9.08 |
| Median 10dB Center Frequency [kHz] | 9.1 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.607 (8.86 - 9.33) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 1.57 (8.44 - 11.3) |
| Median duration [μs] (25-75 percentile) | 94 (18 - 355) |
Time: 2024-10-31 20:18UTC to 2024-10-31 20:24UTC
Event contains 616 original clicks, 308 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 66 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 10.8 |
| Median 3dB Center Frequency [kHz] | 10.8 |
| Median 10dB Center Frequency [kHz] | 10.8 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.66 ( 10 - 11.3) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 1.65 (9.06 - 12.2) |
| Median duration [μs] (25-75 percentile) | 113 (36 - 1000) |
Time: 2024-10-31 20:24UTC to 2024-10-31 20:30UTC
Event contains 432 original clicks, 216 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 33 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 11.6 |
| Median 3dB Center Frequency [kHz] | 9.91 |
| Median 10dB Center Frequency [kHz] | 10.7 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.642 (9.68 - 10.1) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 1.6 (9.09 - 11.3) |
| Median duration [μs] (25-75 percentile) | 78 (18 - 159) |
Time: 2024-10-31 22:36UTC to 2024-10-31 22:42UTC
Event contains 834 original clicks, 417 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 177 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 10 |
| Median 3dB Center Frequency [kHz] | 9.79 |
| Median 10dB Center Frequency [kHz] | 10 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.06 (8.63 - 10.1) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.73 (6.36 - 12) |
| Median duration [μs] (25-75 percentile) | 182 (13 - 1000) |
Time: 2024-11-01 00:42UTC to 2024-11-01 00:48UTC
Event contains 428 original clicks, 214 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 88 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 9 |
| Median 3dB Center Frequency [kHz] | 8.48 |
| Median 10dB Center Frequency [kHz] | 8.61 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.779 (8.04 - 9.23) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.17 ( 6.6 - 11.7) |
| Median duration [μs] (25-75 percentile) | 59 (0 - 1000) |
Time: 2024-11-01 06:54UTC to 2024-11-01 07:00UTC
Event contains 1040 original clicks, 520 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 362 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.89 |
| Median 10dB Center Frequency [kHz] | 5.77 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.946 (5.38 - 6.43) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.28 ( 4.6 - 6.95) |
| Median duration [μs] (25-75 percentile) | 696 (209 - 1404) |
Time: 2024-11-01 07:06UTC to 2024-11-01 07:12UTC
Event contains 584 original clicks, 292 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 213 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.96 |
| Median 10dB Center Frequency [kHz] | 5.9 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.986 (5.46 - 6.47) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.28 (4.65 - 7.12) |
| Median duration [μs] (25-75 percentile) | 795 (297 - 1502) |
Time: 2024-11-01 08:30UTC to 2024-11-01 08:36UTC
Event contains 402 original clicks, 201 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 140 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.92 |
| Median 10dB Center Frequency [kHz] | 6.04 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.01 (5.52 - 6.45) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.31 (4.93 - 7.07) |
| Median duration [μs] (25-75 percentile) | 216 (30 - 1000) |
Time: 2024-11-01 08:36UTC to 2024-11-01 08:42UTC
Event contains 1294 original clicks, 647 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 427 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.95 |
| Median 10dB Center Frequency [kHz] | 5.87 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.92 (5.43 - 6.44) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.21 (4.71 - 7.07) |
| Median duration [μs] (25-75 percentile) | 902 (305 - 1473) |
Time: 2024-11-01 08:42UTC to 2024-11-01 08:48UTC
Event contains 1804 original clicks, 902 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 638 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.92 |
| Median 10dB Center Frequency [kHz] | 5.81 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1 (5.41 - 6.46) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.32 (4.61 - 6.99) |
| Median duration [μs] (25-75 percentile) | 854 (412 - 1470) |
Time: 2024-11-01 08:54UTC to 2024-11-01 09:00UTC
Event contains 750 original clicks, 375 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 246 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.81 |
| Median 10dB Center Frequency [kHz] | 5.81 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.982 (5.29 - 6.37) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.4 (4.58 - 7.11) |
| Median duration [μs] (25-75 percentile) | 727 (340 - 1234) |
Time: 2024-11-01 09:48UTC to 2024-11-01 09:54UTC
Event contains 1308 original clicks, 654 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 385 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.87 |
| Median 10dB Center Frequency [kHz] | 5.89 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.04 (5.34 - 6.45) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.57 (4.44 - 7.23) |
| Median duration [μs] (25-75 percentile) | 352 (117 - 1000) |
Time: 2024-11-01 10:36UTC to 2024-11-01 10:42UTC
Event contains 480 original clicks, 240 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 146 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.01 |
| Median 10dB Center Frequency [kHz] | 5.91 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.971 (5.46 - 6.62) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.36 (4.74 - 7.22) |
| Median duration [μs] (25-75 percentile) | 401 (100 - 1005) |
Time: 2024-11-01 12:24UTC to 2024-11-01 12:30UTC
Event contains 858 original clicks, 429 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 335 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.91 |
| Median 10dB Center Frequency [kHz] | 5.82 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.944 (5.42 - 6.43) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.28 (4.59 - 7.01) |
| Median duration [μs] (25-75 percentile) | 884 (298 - 1577) |
Time: 2024-11-01 12:36UTC to 2024-11-01 12:42UTC
Event contains 1388 original clicks, 694 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 561 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.91 |
| Median 10dB Center Frequency [kHz] | 5.8 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.971 (5.36 - 6.47) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.24 (4.56 - 7.01) |
| Median duration [μs] (25-75 percentile) | 641 (190 - 1309) |
Time: 2024-11-01 12:42UTC to 2024-11-01 12:48UTC
Event contains 1536 original clicks, 768 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 624 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.04 |
| Median 10dB Center Frequency [kHz] | 5.9 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.01 (5.44 - 6.59) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.35 (4.49 - 7.17) |
| Median duration [μs] (25-75 percentile) | 714 (263 - 1252) |
Time: 2024-11-01 12:48UTC to 2024-11-01 12:54UTC
Event contains 718 original clicks, 359 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 289 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.2 |
| Median 10dB Center Frequency [kHz] | 6.07 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.968 (5.68 - 6.76) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.36 ( 4.7 - 7.34) |
| Median duration [μs] (25-75 percentile) | 459 (100 - 1090) |
Time: 2024-11-01 12:54UTC to 2024-11-01 13:00UTC
Event contains 1098 original clicks, 549 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 478 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.19 |
| Median 10dB Center Frequency [kHz] | 5.99 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.05 (5.54 - 6.84) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.63 (4.52 - 7.51) |
| Median duration [μs] (25-75 percentile) | 403 (100 - 1000) |
Time: 2024-11-01 13:00UTC to 2024-11-01 13:06UTC
Event contains 630 original clicks, 315 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 277 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.04 |
| Median 10dB Center Frequency [kHz] | 5.9 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.984 (5.49 - 6.56) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.36 (4.58 - 7.12) |
| Median duration [μs] (25-75 percentile) | 425 (8 - 1004) |
Time: 2024-11-01 13:06UTC to 2024-11-01 13:12UTC
Event contains 1268 original clicks, 634 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 545 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.28 |
| Median 10dB Center Frequency [kHz] | 6.14 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.03 (5.72 - 6.86) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.47 (4.68 - 7.51) |
| Median duration [μs] (25-75 percentile) | 373 (100 - 1000) |
Time: 2024-11-01 13:12UTC to 2024-11-01 13:18UTC
Event contains 622 original clicks, 311 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 272 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.97 |
| Median 10dB Center Frequency [kHz] | 5.79 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.05 (5.35 - 6.54) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.52 (4.38 - 7.13) |
| Median duration [μs] (25-75 percentile) | 336 (100 - 1000) |
Time: 2024-11-01 13:18UTC to 2024-11-01 13:24UTC
Event contains 474 original clicks, 237 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 196 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.05 |
| Median 10dB Center Frequency [kHz] | 5.88 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.02 ( 5.5 - 6.66) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.64 (4.49 - 7.33) |
| Median duration [μs] (25-75 percentile) | 172 (0 - 1000) |
Time: 2024-11-01 13:24UTC to 2024-11-01 13:30UTC
Event contains 436 original clicks, 218 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 194 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.18 |
| Median 10dB Center Frequency [kHz] | 5.99 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.954 (5.65 - 6.74) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.23 (4.79 - 7.27) |
| Median duration [μs] (25-75 percentile) | 357 (0 - 1091) |
Time: 2024-11-01 13:30UTC to 2024-11-01 13:36UTC
Event contains 592 original clicks, 296 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 249 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.14 |
| Median 10dB Center Frequency [kHz] | 6.09 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.979 (5.54 - 6.65) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.42 (4.67 - 7.3) |
| Median duration [μs] (25-75 percentile) | 412 (5 - 1045) |
Time: 2024-11-01 16:48UTC to 2024-11-01 16:54UTC
Event contains 862 original clicks, 431 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 181 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.75 |
| Median 10dB Center Frequency [kHz] | 6.23 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.794 ( 5.4 - 6.18) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.4 (4.76 - 7.86) |
| Median duration [μs] (25-75 percentile) | 1708 (1000 - 2229) |
Time: 2024-11-01 17:00UTC to 2024-11-01 17:06UTC
Event contains 1222 original clicks, 611 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 259 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.65 |
| Median 10dB Center Frequency [kHz] | 6.03 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.845 (5.11 - 6.11) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.03 (4.37 - 7.48) |
| Median duration [μs] (25-75 percentile) | 1679 (1021 - 2334) |
Time: 2024-11-01 20:42UTC to 2024-11-01 20:48UTC
Event contains 686 original clicks, 343 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 148 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.76 |
| Median 10dB Center Frequency [kHz] | 7.86 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.71 (7.39 - 8.13) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 1.8 (6.52 - 9.4) |
| Median duration [μs] (25-75 percentile) | 858 (0 - 1653) |
Time: 2024-11-01 20:48UTC to 2024-11-01 20:54UTC
Event contains 532 original clicks, 266 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 129 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.18 |
| Median 10dB Center Frequency [kHz] | 7.37 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.803 (6.64 - 7.72) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.62 ( 5.6 - 9.09) |
| Median duration [μs] (25-75 percentile) | 1303 (409 - 1926) |
Time: 2024-11-02 05:06UTC to 2024-11-02 05:12UTC
Event contains 494 original clicks, 247 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 125 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.18 |
| Median 10dB Center Frequency [kHz] | 6.11 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.11 (5.48 - 6.82) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.63 (4.78 - 7.46) |
| Median duration [μs] (25-75 percentile) | 47 (0 - 248) |
Time: 2024-11-02 17:18UTC to 2024-11-02 17:24UTC
Event contains 444 original clicks, 222 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 193 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.31 |
| Median 10dB Center Frequency [kHz] | 6.95 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.11 ( 6.5 - 7.85) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.67 ( 4.5 - 9.3) |
| Median duration [μs] (25-75 percentile) | 26 (0 - 472) |
Time: 2024-11-02 17:24UTC to 2024-11-02 17:30UTC
Event contains 416 original clicks, 208 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 160 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.31 |
| Median 10dB Center Frequency [kHz] | 7.34 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.07 (6.67 - 7.94) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.01 (5.82 - 9.06) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-11-02 17:30UTC to 2024-11-02 17:36UTC
Event contains 646 original clicks, 323 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 276 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.49 |
| Median 10dB Center Frequency [kHz] | 7.5 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1 ( 6.9 - 8.08) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.67 (5.69 - 9.47) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-11-02 17:36UTC to 2024-11-02 17:42UTC
Event contains 642 original clicks, 321 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 267 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 7.06 |
| Median 10dB Center Frequency [kHz] | 6.9 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.04 (6.46 - 7.67) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.93 (5.15 - 8.76) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 179) |
Time: 2024-11-02 17:42UTC to 2024-11-02 17:48UTC
Event contains 488 original clicks, 244 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 172 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.5 |
| Median 10dB Center Frequency [kHz] | 7.39 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.03 (6.89 - 8.11) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.39 (6.11 - 8.64) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-11-02 17:48UTC to 2024-11-02 17:54UTC
Event contains 618 original clicks, 309 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 239 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.85 |
| Median 10dB Center Frequency [kHz] | 6.98 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.09 (6.04 - 7.71) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.16 (4.97 - 9.02) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 8) |
Time: 2024-11-02 17:54UTC to 2024-11-02 18:00UTC
Event contains 594 original clicks, 297 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 238 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.77 |
| Median 10dB Center Frequency [kHz] | 7.72 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.07 (6.97 - 8.38) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.15 (5.94 - 9.76) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 48) |
Time: 2024-11-02 18:30UTC to 2024-11-02 18:36UTC
Event contains 684 original clicks, 342 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 277 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.26 |
| Median 10dB Center Frequency [kHz] | 6.26 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.19 (5.57 - 7.03) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.73 (4.14 - 8.3) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-11-02 18:36UTC to 2024-11-02 18:42UTC
Event contains 1008 original clicks, 504 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 464 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.92 |
| Median 10dB Center Frequency [kHz] | 7.88 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.42 (7.16 - 8.65) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.59 (5.08 - 10.3) |
| Median duration [μs] (25-75 percentile) | 44 (0 - 282) |
Time: 2024-11-02 18:42UTC to 2024-11-02 18:48UTC
Event contains 968 original clicks, 484 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 407 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.91 |
| Median 10dB Center Frequency [kHz] | 7.52 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.3 (7.09 - 8.48) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.26 (4.86 - 10.1) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 120) |
Time: 2024-11-02 18:48UTC to 2024-11-02 18:54UTC
Event contains 890 original clicks, 445 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 398 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.6 |
| Median 3dB Center Frequency [kHz] | 6.64 |
| Median 10dB Center Frequency [kHz] | 6.87 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.5 (5.64 - 7.55) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.23 (3.82 - 9.02) |
| Median duration [μs] (25-75 percentile) | 23 (0 - 297) |
Time: 2024-11-02 18:54UTC to 2024-11-02 19:00UTC
Event contains 882 original clicks, 441 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 406 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.07 |
| Median 10dB Center Frequency [kHz] | 6.55 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.09 (5.45 - 6.62) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.76 (3.93 - 9.01) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-11-02 19:00UTC to 2024-11-02 19:06UTC
Event contains 960 original clicks, 480 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 431 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 8.19 |
| Median 10dB Center Frequency [kHz] | 8.1 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.43 (7.33 - 8.93) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.26 (5.67 - 10.5) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 111) |
Time: 2024-11-02 19:06UTC to 2024-11-02 19:12UTC
Event contains 874 original clicks, 437 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 380 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.14 |
| Median 10dB Center Frequency [kHz] | 7.12 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.36 (6.31 - 7.95) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.01 (4.66 - 9.6) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 144) |
Time: 2024-11-02 19:12UTC to 2024-11-02 19:18UTC
Event contains 802 original clicks, 401 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 326 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.73 |
| Median 10dB Center Frequency [kHz] | 7.67 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.43 (6.97 - 8.39) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.18 (5.47 - 9.92) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-11-02 19:18UTC to 2024-11-02 19:24UTC
Event contains 876 original clicks, 438 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 403 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.51 |
| Median 10dB Center Frequency [kHz] | 7.71 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.16 (6.78 - 8.15) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.62 (5.36 - 9.7) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 104) |
Time: 2024-11-02 19:24UTC to 2024-11-02 19:30UTC
Event contains 736 original clicks, 368 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 335 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.54 |
| Median 10dB Center Frequency [kHz] | 6.79 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.42 (5.78 - 7.58) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.66 (3.73 - 9.87) |
| Median duration [μs] (25-75 percentile) | 26 (0 - 227) |
Time: 2024-11-02 19:30UTC to 2024-11-02 19:36UTC
Event contains 736 original clicks, 368 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 318 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 6.97 |
| Median 10dB Center Frequency [kHz] | 7.08 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.38 (6.15 - 7.84) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.38 (4.86 - 9.58) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 133) |
Time: 2024-11-05 08:54UTC to 2024-11-05 09:00UTC
Event contains 408 original clicks, 204 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 73 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.29 |
| Median 10dB Center Frequency [kHz] | 7.21 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.07 (6.73 - 7.82) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.04 (5.28 - 9.09) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-11-05 09:06UTC to 2024-11-05 09:12UTC
Event contains 1036 original clicks, 518 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 295 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.13 |
| Median 10dB Center Frequency [kHz] | 6.06 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.08 (5.59 - 6.76) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.06 (4.39 - 7.47) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-11-05 09:12UTC to 2024-11-05 09:18UTC
Event contains 1066 original clicks, 533 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 200 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.71 |
| Median 10dB Center Frequency [kHz] | 6.49 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1 (5.95 - 7.31) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.89 ( 5.2 - 8.19) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-11-05 09:18UTC to 2024-11-05 09:24UTC
Event contains 1934 original clicks, 967 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 631 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.13 |
| Median 10dB Center Frequency [kHz] | 6.11 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.07 (5.52 - 6.69) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.97 (4.46 - 7.89) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-11-05 09:24UTC to 2024-11-05 09:30UTC
Event contains 1694 original clicks, 847 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 550 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.49 |
| Median 10dB Center Frequency [kHz] | 6.36 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.11 (5.91 - 7.06) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.16 (4.57 - 8.02) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 21) |
Time: 2024-11-05 09:30UTC to 2024-11-05 09:36UTC
Event contains 2302 original clicks, 1151 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 844 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.32 |
| Median 10dB Center Frequency [kHz] | 6.28 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.11 (5.75 - 6.85) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.79 (4.32 - 7.75) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-11-05 09:36UTC to 2024-11-05 09:42UTC
Event contains 2850 original clicks, 1425 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1040 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.27 |
| Median 10dB Center Frequency [kHz] | 6.18 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.12 (5.67 - 6.91) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.02 (4.45 - 7.77) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 3) |
Time: 2024-11-05 09:42UTC to 2024-11-05 09:48UTC
Event contains 2652 original clicks, 1326 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1103 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.33 |
| Median 10dB Center Frequency [kHz] | 6.24 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.07 (5.69 - 6.93) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3 ( 4.1 - 8.27) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 146) |
Time: 2024-11-05 09:48UTC to 2024-11-05 09:54UTC
Event contains 1980 original clicks, 990 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 794 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.96 |
| Median 10dB Center Frequency [kHz] | 6.06 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.985 (5.36 - 6.53) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.76 (4.39 - 7.55) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 116) |
Time: 2024-11-05 09:54UTC to 2024-11-05 10:00UTC
Event contains 1502 original clicks, 751 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 571 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.88 |
| Median 10dB Center Frequency [kHz] | 6.86 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.94 (6.37 - 7.41) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.61 (5.26 - 8.26) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-11-05 10:00UTC to 2024-11-05 10:06UTC
Event contains 2402 original clicks, 1201 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 994 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.39 |
| Median 10dB Center Frequency [kHz] | 6.54 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.02 (5.83 - 6.96) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.99 (4.77 - 8.26) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-11-05 10:06UTC to 2024-11-05 10:12UTC
Event contains 1970 original clicks, 985 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 747 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.88 |
| Median 10dB Center Frequency [kHz] | 6.92 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.06 (6.25 - 7.53) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.15 ( 5 - 8.78) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 39) |
Time: 2024-11-05 10:12UTC to 2024-11-05 10:18UTC
Event contains 2360 original clicks, 1180 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 960 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.75 |
| Median 10dB Center Frequency [kHz] | 6.8 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.16 (5.93 - 7.37) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.19 (4.93 - 8.53) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 188) |
Time: 2024-11-05 10:18UTC to 2024-11-05 10:24UTC
Event contains 1952 original clicks, 976 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 766 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.55 |
| Median 10dB Center Frequency [kHz] | 7.35 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.954 (6.84 - 8.15) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.89 (5.77 - 9) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-11-05 10:24UTC to 2024-11-05 10:30UTC
Event contains 1666 original clicks, 833 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 692 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.25 |
| Median 10dB Center Frequency [kHz] | 6.58 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.982 (5.69 - 6.81) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.09 (4.82 - 8.34) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-11-05 10:30UTC to 2024-11-05 10:36UTC
Event contains 2686 original clicks, 1343 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1098 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.33 |
| Median 10dB Center Frequency [kHz] | 6.39 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.08 (5.67 - 6.97) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.17 (4.48 - 8.32) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-11-05 10:36UTC to 2024-11-05 10:42UTC
Event contains 3140 original clicks, 1570 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1326 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.66 |
| Median 10dB Center Frequency [kHz] | 6.8 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.06 ( 6.1 - 7.31) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.27 (4.74 - 8.7) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 127) |
Time: 2024-11-05 10:42UTC to 2024-11-05 10:48UTC
Event contains 3572 original clicks, 1786 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1399 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.73 |
| Median 10dB Center Frequency [kHz] | 6.77 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.937 (6.16 - 7.32) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.93 (5.07 - 8.53) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 5) |
Time: 2024-11-05 10:48UTC to 2024-11-05 10:54UTC
Event contains 3574 original clicks, 1787 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1531 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.07 |
| Median 10dB Center Frequency [kHz] | 7.01 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.1 (6.46 - 7.66) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.26 (5.21 - 8.71) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 125) |
Time: 2024-11-05 10:54UTC to 2024-11-05 11:00UTC
Event contains 3312 original clicks, 1656 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1418 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.1 |
| Median 10dB Center Frequency [kHz] | 7.07 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.09 (6.45 - 7.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.37 (5.32 - 8.99) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-11-05 11:00UTC to 2024-11-05 11:06UTC
Event contains 3086 original clicks, 1543 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1290 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.84 |
| Median 10dB Center Frequency [kHz] | 6.88 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.15 ( 6.1 - 7.54) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.48 (4.78 - 8.83) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-11-05 11:06UTC to 2024-11-05 11:12UTC
Event contains 4330 original clicks, 2165 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1822 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.98 |
| Median 10dB Center Frequency [kHz] | 6.99 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.15 (6.26 - 7.69) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.49 ( 5 - 8.96) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 214) |
Time: 2024-11-05 11:12UTC to 2024-11-05 11:18UTC
Event contains 4536 original clicks, 2268 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2043 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.47 |
| Median 10dB Center Frequency [kHz] | 7.35 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.39 (6.65 - 8.2) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.26 (4.79 - 9.56) |
| Median duration [μs] (25-75 percentile) | 109 (0 - 460) |
Time: 2024-11-05 11:18UTC to 2024-11-05 11:24UTC
Event contains 5192 original clicks, 2596 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2358 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.18 |
| Median 10dB Center Frequency [kHz] | 7.16 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.3 (6.37 - 7.91) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.31 (4.52 - 9.42) |
| Median duration [μs] (25-75 percentile) | 76 (0 - 1000) |
Time: 2024-11-05 11:24UTC to 2024-11-05 11:30UTC
Event contains 5002 original clicks, 2501 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2179 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.28 |
| Median 10dB Center Frequency [kHz] | 7.3 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.2 ( 6.6 - 7.91) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.78 (5.12 - 9.4) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 196) |
Time: 2024-11-05 11:30UTC to 2024-11-05 11:36UTC
Event contains 3810 original clicks, 1905 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1648 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.11 |
| Median 10dB Center Frequency [kHz] | 7 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.2 (6.39 - 7.73) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.44 (4.99 - 8.92) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 136) |
Time: 2024-11-05 11:36UTC to 2024-11-05 11:42UTC
Event contains 3756 original clicks, 1878 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1614 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.04 |
| Median 10dB Center Frequency [kHz] | 7 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.16 (6.38 - 7.69) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.61 ( 4.9 - 8.93) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-11-05 11:42UTC to 2024-11-05 11:48UTC
Event contains 5368 original clicks, 2684 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2222 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.41 |
| Median 10dB Center Frequency [kHz] | 7.36 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.29 (6.71 - 8.18) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.87 (5.11 - 9.37) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 242) |
Time: 2024-11-05 11:48UTC to 2024-11-05 11:54UTC
Event contains 5976 original clicks, 2988 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2462 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.24 |
| Median 10dB Center Frequency [kHz] | 7.23 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.2 (6.59 - 7.91) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.52 ( 5.1 - 9.16) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 172) |
Time: 2024-11-05 11:54UTC to 2024-11-05 12:00UTC
Event contains 5246 original clicks, 2623 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2003 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.28 |
| Median 10dB Center Frequency [kHz] | 7.15 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.19 (6.53 - 8.07) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.57 (4.83 - 9.14) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 196) |
Time: 2024-11-05 12:00UTC to 2024-11-05 12:06UTC
Event contains 3298 original clicks, 1649 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1147 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.66 |
| Median 10dB Center Frequency [kHz] | 7.49 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.56 (6.85 - 8.58) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.66 (4.91 - 9.95) |
| Median duration [μs] (25-75 percentile) | 31 (0 - 1000) |
Time: 2024-11-05 12:06UTC to 2024-11-05 12:12UTC
Event contains 3060 original clicks, 1530 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1091 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.74 |
| Median 10dB Center Frequency [kHz] | 7.64 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.31 (6.99 - 8.56) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.76 (5.26 - 9.71) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 261) |
Time: 2024-11-05 12:12UTC to 2024-11-05 12:18UTC
Event contains 2506 original clicks, 1253 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 940 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.25 |
| Median 10dB Center Frequency [kHz] | 7.24 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.39 (6.45 - 8.09) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.95 (4.96 - 9.34) |
| Median duration [μs] (25-75 percentile) | 22 (0 - 357) |
Time: 2024-11-05 12:18UTC to 2024-11-05 12:24UTC
Event contains 1236 original clicks, 618 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 485 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.4 |
| Median 10dB Center Frequency [kHz] | 7.44 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.6 (6.57 - 8.18) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.26 (4.63 - 9.69) |
| Median duration [μs] (25-75 percentile) | 156 (0 - 1000) |
Time: 2024-11-05 12:24UTC to 2024-11-05 12:30UTC
Event contains 640 original clicks, 320 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 253 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.78 |
| Median 10dB Center Frequency [kHz] | 7.04 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.21 (6.18 - 7.38) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.56 ( 4.7 - 8.84) |
| Median duration [μs] (25-75 percentile) | 70 (0 - 443) |
Time: 2024-11-05 12:30UTC to 2024-11-05 12:36UTC
Event contains 832 original clicks, 416 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 284 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.51 |
| Median 10dB Center Frequency [kHz] | 6.37 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.07 (5.92 - 7.06) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.82 (4.72 - 7.93) |
| Median duration [μs] (25-75 percentile) | 39 (0 - 231) |
Time: 2024-11-05 12:36UTC to 2024-11-05 12:42UTC
Event contains 1470 original clicks, 735 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 596 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.12 |
| Median 10dB Center Frequency [kHz] | 7.24 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.16 (6.46 - 7.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.49 (5.27 - 9.14) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 162) |
Time: 2024-11-05 12:42UTC to 2024-11-05 12:48UTC
Event contains 1168 original clicks, 584 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 490 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.44 |
| Median 10dB Center Frequency [kHz] | 6.47 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.28 (5.79 - 7.19) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.46 (4.42 - 8.43) |
| Median duration [μs] (25-75 percentile) | 2.6 (0 - 302) |
Time: 2024-11-05 12:48UTC to 2024-11-05 12:54UTC
Event contains 1430 original clicks, 715 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 566 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.26 |
| Median 10dB Center Frequency [kHz] | 7.21 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.18 (6.63 - 7.87) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.64 (5.19 - 9.17) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 18) |
Time: 2024-11-05 12:54UTC to 2024-11-05 13:00UTC
Event contains 1014 original clicks, 507 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 372 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.8 |
| Median 10dB Center Frequency [kHz] | 6.93 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.23 ( 6 - 7.45) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.87 (4.69 - 8.88) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 39) |
Time: 2024-11-05 13:00UTC to 2024-11-05 13:06UTC
Event contains 1006 original clicks, 503 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 373 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.47 |
| Median 10dB Center Frequency [kHz] | 6.53 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.13 (5.87 - 7.11) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.02 (4.91 - 8.02) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-11-05 13:06UTC to 2024-11-05 13:12UTC
Event contains 584 original clicks, 292 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 197 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.51 |
| Median 10dB Center Frequency [kHz] | 6.49 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.15 (5.85 - 7.22) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.23 (4.86 - 8.29) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-11-05 13:12UTC to 2024-11-05 13:18UTC
Event contains 428 original clicks, 214 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 133 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.54 |
| Median 10dB Center Frequency [kHz] | 6.66 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.36 (5.88 - 7.26) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.86 (4.38 - 8.71) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-11-05 13:18UTC to 2024-11-05 13:24UTC
Event contains 1020 original clicks, 510 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 264 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.66 |
| Median 10dB Center Frequency [kHz] | 6.79 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.25 (5.99 - 7.37) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.61 (4.68 - 8.59) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-11-05 13:24UTC to 2024-11-05 13:30UTC
Event contains 682 original clicks, 341 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 186 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.03 |
| Median 10dB Center Frequency [kHz] | 6.94 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.18 (6.42 - 7.63) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.28 (5.27 - 8.49) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-11-05 13:30UTC to 2024-11-05 13:36UTC
Event contains 956 original clicks, 478 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 254 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.97 |
| Median 10dB Center Frequency [kHz] | 6.96 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.21 (6.31 - 7.59) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.46 (5.49 - 8.7) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-11-05 13:36UTC to 2024-11-05 13:42UTC
Event contains 670 original clicks, 335 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 181 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.17 |
| Median 10dB Center Frequency [kHz] | 6.16 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.22 (5.54 - 6.72) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.71 (4.22 - 8.15) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-11-05 13:42UTC to 2024-11-05 13:48UTC
Event contains 732 original clicks, 366 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 220 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.6 |
| Median 10dB Center Frequency [kHz] | 6.61 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.13 (5.85 - 7.17) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.36 (4.59 - 8.26) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-11-06 23:06UTC to 2024-11-06 23:12UTC
Event contains 448 original clicks, 224 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 162 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.98 |
| Median 10dB Center Frequency [kHz] | 8.02 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.1 (7.43 - 8.57) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.27 (6.35 - 9.64) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-11-06 23:12UTC to 2024-11-06 23:18UTC
Event contains 934 original clicks, 467 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 279 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.12 |
| Median 10dB Center Frequency [kHz] | 8.74 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.03 (7.72 - 8.77) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.26 (6.69 - 10.5) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-11-06 23:18UTC to 2024-11-06 23:24UTC
Event contains 2188 original clicks, 1094 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 477 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.37 |
| Median 10dB Center Frequency [kHz] | 7.27 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.09 (6.78 - 8.03) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.7 (5.36 - 9.42) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-11-06 23:24UTC to 2024-11-06 23:30UTC
Event contains 3708 original clicks, 1854 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 849 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.71 |
| Median 10dB Center Frequency [kHz] | 7.83 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.02 (7.05 - 8.46) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.41 (5.91 - 9.64) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-11-06 23:30UTC to 2024-11-06 23:36UTC
Event contains 4330 original clicks, 2165 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1388 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.22 |
| Median 10dB Center Frequency [kHz] | 8.11 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.1 (7.52 - 8.82) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.48 (6.12 - 10.1) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-11-06 23:36UTC to 2024-11-06 23:42UTC
Event contains 3510 original clicks, 1755 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1288 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.93 |
| Median 10dB Center Frequency [kHz] | 7.06 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.01 (6.36 - 7.52) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.09 ( 5.2 - 8.87) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-11-06 23:42UTC to 2024-11-06 23:48UTC
Event contains 1472 original clicks, 736 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 533 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.55 |
| Median 10dB Center Frequency [kHz] | 7.48 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.08 (6.99 - 8.28) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.12 (5.61 - 9.13) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-11-06 23:48UTC to 2024-11-06 23:54UTC
Event contains 1040 original clicks, 520 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 382 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.32 |
| Median 10dB Center Frequency [kHz] | 6.3 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.17 (5.73 - 6.98) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.94 (4.54 - 8.04) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 50) |
Time: 2024-11-06 23:54UTC to 2024-11-07 00:00UTC
Event contains 908 original clicks, 454 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 372 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.75 |
| Median 10dB Center Frequency [kHz] | 7.78 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.06 (7.18 - 8.32) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.58 (5.87 - 9.66) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 1000) |
Time: 2024-11-07 00:36UTC to 2024-11-07 00:42UTC
Event contains 3016 original clicks, 1508 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1126 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.79 |
| Median 10dB Center Frequency [kHz] | 6 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.19 ( 5.2 - 6.44) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.37 (4.11 - 7.88) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 42) |
Time: 2024-11-07 00:42UTC to 2024-11-07 00:48UTC
Event contains 1108 original clicks, 554 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 390 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.4 |
| Median 3dB Center Frequency [kHz] | 6.89 |
| Median 10dB Center Frequency [kHz] | 7.29 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.27 (6.11 - 7.69) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.6 (4.37 - 10) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-11-07 00:54UTC to 2024-11-07 01:00UTC
Event contains 4692 original clicks, 2346 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1572 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.89 |
| Median 10dB Center Frequency [kHz] | 6.2 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.22 (5.16 - 6.61) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.83 (4.06 - 8.39) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-11-07 01:24UTC to 2024-11-07 01:30UTC
Event contains 1204 original clicks, 602 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 400 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.83 |
| Median 10dB Center Frequency [kHz] | 6.05 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.12 (5.23 - 6.46) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.38 (4.07 - 7.95) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-11-07 03:30UTC to 2024-11-07 03:36UTC
Event contains 408 original clicks, 204 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 126 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 7.85 |
| Median 10dB Center Frequency [kHz] | 7.86 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.24 (7.19 - 8.61) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.68 (5.83 - 10) |
| Median duration [μs] (25-75 percentile) | 68 (0 - 211) |
Time: 2024-11-07 03:36UTC to 2024-11-07 03:42UTC
Event contains 448 original clicks, 224 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 147 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.34 |
| Median 10dB Center Frequency [kHz] | 7.65 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.2 (6.78 - 8.11) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.8 (5.57 - 9.41) |
| Median duration [μs] (25-75 percentile) | 18 (0 - 119) |
Time: 2024-11-07 03:42UTC to 2024-11-07 03:48UTC
Event contains 408 original clicks, 204 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 137 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 7.87 |
| Median 10dB Center Frequency [kHz] | 8.37 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.36 (7.26 - 8.69) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.6 ( 6 - 10.2) |
| Median duration [μs] (25-75 percentile) | 63 (0 - 248) |
Time: 2024-11-07 04:00UTC to 2024-11-07 04:06UTC
Event contains 522 original clicks, 261 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 162 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.32 |
| Median 10dB Center Frequency [kHz] | 7.79 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.26 (6.67 - 8.34) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.74 (5.58 - 9.95) |
| Median duration [μs] (25-75 percentile) | 65 (0 - 338) |
Time: 2024-11-07 04:06UTC to 2024-11-07 04:12UTC
Event contains 482 original clicks, 241 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 161 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.14 |
| Median 10dB Center Frequency [kHz] | 7.51 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.27 (6.52 - 7.79) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.89 ( 5.1 - 9.99) |
| Median duration [μs] (25-75 percentile) | 94 (16 - 370) |
Time: 2024-11-07 04:12UTC to 2024-11-07 04:18UTC
Event contains 436 original clicks, 218 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 153 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.86 |
| Median 10dB Center Frequency [kHz] | 7.99 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.28 (7.14 - 8.6) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.5 (5.84 - 10.1) |
| Median duration [μs] (25-75 percentile) | 65 (3 - 255) |
Time: 2024-11-07 04:24UTC to 2024-11-07 04:30UTC
Event contains 500 original clicks, 250 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 152 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.42 |
| Median 10dB Center Frequency [kHz] | 7.85 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.25 (6.79 - 8.11) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.36 (5.84 - 9.69) |
| Median duration [μs] (25-75 percentile) | 115 (0 - 359) |
Time: 2024-11-07 04:30UTC to 2024-11-07 04:36UTC
Event contains 544 original clicks, 272 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 179 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.63 |
| Median 10dB Center Frequency [kHz] | 8.19 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.33 (7.07 - 8.57) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.82 (6.28 - 10.4) |
| Median duration [μs] (25-75 percentile) | 81 (3 - 233) |
Time: 2024-11-07 04:36UTC to 2024-11-07 04:42UTC
Event contains 432 original clicks, 216 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 149 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.17 |
| Median 10dB Center Frequency [kHz] | 7.29 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.26 (6.43 - 7.84) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.75 (5.67 - 9.57) |
| Median duration [μs] (25-75 percentile) | 109 (21 - 407) |
Time: 2024-11-07 04:42UTC to 2024-11-07 04:48UTC
Event contains 522 original clicks, 261 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 181 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.38 |
| Median 10dB Center Frequency [kHz] | 7.7 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.27 (6.77 - 7.97) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.71 (5.61 - 9.54) |
| Median duration [μs] (25-75 percentile) | 109 (3 - 339) |
Time: 2024-11-07 04:48UTC to 2024-11-07 04:54UTC
Event contains 408 original clicks, 204 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 139 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.61 |
| Median 10dB Center Frequency [kHz] | 7.82 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.22 (6.93 - 8.26) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.8 (5.92 - 9.95) |
| Median duration [μs] (25-75 percentile) | 102 (0 - 468) |
Time: 2024-11-07 04:54UTC to 2024-11-07 05:00UTC
Event contains 494 original clicks, 247 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 174 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.31 |
| Median 10dB Center Frequency [kHz] | 7.55 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.27 (6.63 - 7.87) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.75 (5.43 - 9.68) |
| Median duration [μs] (25-75 percentile) | 82 (8 - 458) |
Time: 2024-11-07 05:12UTC to 2024-11-07 05:18UTC
Event contains 472 original clicks, 236 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 158 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.32 |
| Median 10dB Center Frequency [kHz] | 7.75 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.29 (6.67 - 8.02) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.82 (5.63 - 9.43) |
| Median duration [μs] (25-75 percentile) | 87 (10 - 487) |
Time: 2024-11-07 05:18UTC to 2024-11-07 05:24UTC
Event contains 430 original clicks, 215 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 143 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.08 |
| Median 10dB Center Frequency [kHz] | 7.52 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.3 (6.56 - 7.89) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.61 (5.82 - 9.62) |
| Median duration [μs] (25-75 percentile) | 81 (5 - 335) |
Time: 2024-11-07 05:30UTC to 2024-11-07 05:36UTC
Event contains 436 original clicks, 218 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 151 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.36 |
| Median 10dB Center Frequency [kHz] | 7.74 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.26 (6.76 - 7.93) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.54 (5.41 - 9.55) |
| Median duration [μs] (25-75 percentile) | 70 (5 - 365) |
Time: 2024-11-07 05:42UTC to 2024-11-07 05:48UTC
Event contains 540 original clicks, 270 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 185 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.8 |
| Median 3dB Center Frequency [kHz] | 8.13 |
| Median 10dB Center Frequency [kHz] | 8.38 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.31 (7.43 - 8.74) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.59 (5.83 - 10.4) |
| Median duration [μs] (25-75 percentile) | 138 (21 - 467) |
Time: 2024-11-07 05:48UTC to 2024-11-07 05:54UTC
Event contains 546 original clicks, 273 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 194 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 9.6 |
| Median 3dB Center Frequency [kHz] | 8.44 |
| Median 10dB Center Frequency [kHz] | 8.36 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.49 (7.65 - 9.39) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.35 (6.59 - 10.8) |
| Median duration [μs] (25-75 percentile) | 120 (19 - 245) |
Time: 2024-11-07 06:18UTC to 2024-11-07 06:24UTC
Event contains 400 original clicks, 200 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 133 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 9.6 |
| Median 3dB Center Frequency [kHz] | 8.57 |
| Median 10dB Center Frequency [kHz] | 8.62 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.33 (7.96 - 9.2) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.06 (6.99 - 11.2) |
| Median duration [μs] (25-75 percentile) | 36 (0 - 175) |
Time: 2024-11-07 07:57UTC to 2024-11-07 08:03UTC
Event contains 1046 original clicks, 523 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 355 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.4 |
| Median 10dB Center Frequency [kHz] | 5.82 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.26 (4.96 - 6.06) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.39 (4.11 - 7.49) |
| Median duration [μs] (25-75 percentile) | 284 (100 - 1000) |
Time: 2024-11-07 09:09UTC to 2024-11-07 09:15UTC
Event contains 476 original clicks, 238 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 193 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 9.2 |
| Median 3dB Center Frequency [kHz] | 7.67 |
| Median 10dB Center Frequency [kHz] | 7.31 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.39 (6.79 - 8.32) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.73 (5.45 - 9.71) |
| Median duration [μs] (25-75 percentile) | 196 (0 - 331) |
Time: 2024-11-07 10:51UTC to 2024-11-07 10:57UTC
Event contains 960 original clicks, 480 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 328 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.92 |
| Median 10dB Center Frequency [kHz] | 5.87 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.06 (5.28 - 6.58) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.63 (4.39 - 7.26) |
| Median duration [μs] (25-75 percentile) | 429 (168 - 1000) |
Time: 2024-11-07 10:57UTC to 2024-11-07 11:03UTC
Event contains 906 original clicks, 453 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 306 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.21 |
| Median 10dB Center Frequency [kHz] | 6.05 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.1 (5.57 - 6.83) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.66 (4.66 - 7.46) |
| Median duration [μs] (25-75 percentile) | 540 (218 - 1000) |
Time: 2024-11-07 11:03UTC to 2024-11-07 11:09UTC
Event contains 436 original clicks, 218 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 138 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.88 |
| Median 10dB Center Frequency [kHz] | 5.84 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.11 (5.35 - 6.51) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.62 (4.59 - 7.27) |
| Median duration [μs] (25-75 percentile) | 411 (156 - 1000) |
Time: 2024-11-08 05:33UTC to 2024-11-08 05:39UTC
Event contains 478 original clicks, 239 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 171 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.01 |
| Median 10dB Center Frequency [kHz] | 7.91 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.39 (7.31 - 8.56) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.64 (5.87 - 9.86) |
| Median duration [μs] (25-75 percentile) | 435 (212 - 1118) |
Time: 2024-11-08 06:21UTC to 2024-11-08 06:27UTC
Event contains 914 original clicks, 457 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 358 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.84 |
| Median 10dB Center Frequency [kHz] | 5.76 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.08 (5.24 - 6.42) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.57 (4.47 - 7.14) |
| Median duration [μs] (25-75 percentile) | 520 (220 - 1000) |
Time: 2024-11-08 06:45UTC to 2024-11-08 06:51UTC
Event contains 502 original clicks, 251 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 203 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.98 |
| Median 10dB Center Frequency [kHz] | 5.94 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.12 (5.35 - 6.64) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.77 (4.58 - 7.32) |
| Median duration [μs] (25-75 percentile) | 620 (168 - 1084) |
Time: 2024-11-08 07:15UTC to 2024-11-08 07:21UTC
Event contains 1662 original clicks, 831 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 716 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.05 |
| Median 10dB Center Frequency [kHz] | 5.98 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.24 ( 5.2 - 6.82) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.78 (4.52 - 7.5) |
| Median duration [μs] (25-75 percentile) | 841 (383 - 1215) |
Time: 2024-11-08 08:09UTC to 2024-11-08 08:15UTC
Event contains 716 original clicks, 358 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 298 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.18 |
| Median 10dB Center Frequency [kHz] | 5.96 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.06 (5.58 - 6.66) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.43 (4.63 - 7.36) |
| Median duration [μs] (25-75 percentile) | 525 (106 - 1068) |
Time: 2024-11-08 08:15UTC to 2024-11-08 08:21UTC
Event contains 1094 original clicks, 547 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 423 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.03 |
| Median 10dB Center Frequency [kHz] | 6.34 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.998 (5.51 - 6.57) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.56 (4.74 - 7.7) |
| Median duration [μs] (25-75 percentile) | 826 (304 - 1453) |
Time: 2024-11-08 08:21UTC to 2024-11-08 08:27UTC
Event contains 1848 original clicks, 924 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 707 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.09 |
| Median 10dB Center Frequency [kHz] | 6.06 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1 (5.52 - 6.66) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.52 (4.62 - 7.53) |
| Median duration [μs] (25-75 percentile) | 704 (112 - 1397) |
Time: 2024-11-08 08:45UTC to 2024-11-08 08:51UTC
Event contains 1088 original clicks, 544 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 471 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.3 |
| Median 10dB Center Frequency [kHz] | 6.24 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.06 (5.82 - 6.83) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.6 (4.86 - 7.57) |
| Median duration [μs] (25-75 percentile) | 876 (313 - 1636) |
Time: 2024-11-08 08:51UTC to 2024-11-08 08:57UTC
Event contains 1358 original clicks, 679 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 568 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.56 |
| Median 10dB Center Frequency [kHz] | 6.49 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.08 (5.95 - 7.1) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.78 (4.89 - 8.04) |
| Median duration [μs] (25-75 percentile) | 1010 (1000 - 1641) |
Time: 2024-11-08 08:57UTC to 2024-11-08 09:03UTC
Event contains 922 original clicks, 461 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 416 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.43 |
| Median 10dB Center Frequency [kHz] | 6.34 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.938 (5.82 - 6.98) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.47 (4.87 - 7.67) |
| Median duration [μs] (25-75 percentile) | 1247 (1000 - 1919) |
Time: 2024-11-08 09:03UTC to 2024-11-08 09:09UTC
Event contains 1230 original clicks, 615 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 536 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.8 |
| Median 10dB Center Frequency [kHz] | 5.8 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.974 (5.15 - 6.28) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.35 (4.39 - 7.25) |
| Median duration [μs] (25-75 percentile) | 1327 (1000 - 2049) |
Time: 2024-11-08 09:09UTC to 2024-11-08 09:15UTC
Event contains 992 original clicks, 496 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 444 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.9 |
| Median 10dB Center Frequency [kHz] | 6.61 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.905 (6.33 - 7.51) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.49 (5.33 - 8.24) |
| Median duration [μs] (25-75 percentile) | 1197 (1000 - 1809) |
Time: 2024-11-08 09:15UTC to 2024-11-08 09:21UTC
Event contains 1226 original clicks, 613 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 523 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.1 |
| Median 10dB Center Frequency [kHz] | 6.09 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.974 ( 5.6 - 6.67) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.51 (4.59 - 7.44) |
| Median duration [μs] (25-75 percentile) | 1264 (1000 - 2035) |
Time: 2024-11-08 09:21UTC to 2024-11-08 09:27UTC
Event contains 962 original clicks, 481 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 420 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.19 |
| Median 10dB Center Frequency [kHz] | 6.06 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.959 (5.61 - 6.8) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.49 (4.76 - 7.46) |
| Median duration [μs] (25-75 percentile) | 1146 (312 - 1919) |
Time: 2024-11-08 09:33UTC to 2024-11-08 09:39UTC
Event contains 714 original clicks, 357 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 314 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.09 |
| Median 10dB Center Frequency [kHz] | 5.94 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.972 (5.39 - 6.73) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.62 (4.32 - 7.56) |
| Median duration [μs] (25-75 percentile) | 1434 (1000 - 2169) |
Time: 2024-11-08 09:39UTC to 2024-11-08 09:45UTC
Event contains 806 original clicks, 403 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 360 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.33 |
| Median 10dB Center Frequency [kHz] | 6.32 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.954 (5.73 - 7.07) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.68 (5.04 - 8.1) |
| Median duration [μs] (25-75 percentile) | 1804 (1272 - 2337) |
Time: 2024-11-08 09:45UTC to 2024-11-08 09:51UTC
Event contains 428 original clicks, 214 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 191 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.25 |
| Median 10dB Center Frequency [kHz] | 7.19 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.979 ( 6.7 - 7.86) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.7 ( 5.6 - 8.63) |
| Median duration [μs] (25-75 percentile) | 1590 (1099 - 2165) |
Time: 2024-11-08 09:51UTC to 2024-11-08 09:57UTC
Event contains 494 original clicks, 247 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 217 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.47 |
| Median 10dB Center Frequency [kHz] | 6.4 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.968 (6.01 - 6.93) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.78 (4.77 - 8.21) |
| Median duration [μs] (25-75 percentile) | 1486 (1000 - 2166) |
Time: 2024-11-08 09:57UTC to 2024-11-08 10:03UTC
Event contains 424 original clicks, 212 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 185 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.4 |
| Median 10dB Center Frequency [kHz] | 6.48 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.93 ( 6 - 6.89) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.64 (5.18 - 7.97) |
| Median duration [μs] (25-75 percentile) | 1374 (1000 - 2112) |
Time: 2024-11-08 13:57UTC to 2024-11-08 14:03UTC
Event contains 2934 original clicks, 1467 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1112 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.83 |
| Median 10dB Center Frequency [kHz] | 5.79 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.12 (5.15 - 6.47) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.63 (4.36 - 7.17) |
| Median duration [μs] (25-75 percentile) | 778 (437 - 1126) |
Time: 2024-11-08 14:03UTC to 2024-11-08 14:09UTC
Event contains 4228 original clicks, 2114 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1510 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.98 |
| Median 10dB Center Frequency [kHz] | 5.9 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.09 (5.38 - 6.6) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.58 (4.54 - 7.25) |
| Median duration [μs] (25-75 percentile) | 779 (412 - 1165) |
Time: 2024-11-08 14:09UTC to 2024-11-08 14:15UTC
Event contains 3862 original clicks, 1931 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1370 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.06 |
| Median 10dB Center Frequency [kHz] | 5.93 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.07 (5.45 - 6.71) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.66 (4.48 - 7.36) |
| Median duration [μs] (25-75 percentile) | 766 (326 - 1309) |
Time: 2024-11-08 14:15UTC to 2024-11-08 14:21UTC
Event contains 1890 original clicks, 945 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 666 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.89 |
| Median 10dB Center Frequency [kHz] | 5.75 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.03 (5.23 - 6.51) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.61 (4.42 - 7.32) |
| Median duration [μs] (25-75 percentile) | 854 (267 - 1702) |
Time: 2024-11-08 14:51UTC to 2024-11-08 14:57UTC
Event contains 402 original clicks, 201 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 81 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 8.4 |
| Median 10dB Center Frequency [kHz] | 8.43 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.745 ( 8.2 - 8.69) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 1.94 (7.85 - 9.54) |
| Median duration [μs] (25-75 percentile) | 149 (0 - 1000) |
Time: 2024-11-08 16:39UTC to 2024-11-08 16:45UTC
Event contains 1112 original clicks, 556 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 512 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.47 |
| Median 10dB Center Frequency [kHz] | 7.17 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.38 (7.01 - 8.08) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.41 (5.56 - 8.88) |
| Median duration [μs] (25-75 percentile) | 338 (177 - 1000) |
Time: 2024-11-08 16:45UTC to 2024-11-08 16:51UTC
Event contains 1080 original clicks, 540 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 500 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 12.4 |
| Median 3dB Center Frequency [kHz] | 12.1 |
| Median 10dB Center Frequency [kHz] | 12.2 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.29 (11.4 - 12.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.31 (10.6 - 13.7) |
| Median duration [μs] (25-75 percentile) | 401 (260 - 1000) |
Time: 2024-11-08 16:51UTC to 2024-11-08 16:57UTC
Event contains 994 original clicks, 497 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 438 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 12 |
| Median 3dB Center Frequency [kHz] | 11.8 |
| Median 10dB Center Frequency [kHz] | 12 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.35 ( 11 - 12.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.46 (8.88 - 14.2) |
| Median duration [μs] (25-75 percentile) | 439 (270 - 1000) |
Time: 2024-11-08 16:57UTC to 2024-11-08 17:03UTC
Event contains 994 original clicks, 497 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 435 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 12 |
| Median 3dB Center Frequency [kHz] | 11.9 |
| Median 10dB Center Frequency [kHz] | 12 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.41 (11.1 - 12.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.73 (8.88 - 13.7) |
| Median duration [μs] (25-75 percentile) | 407 (269 - 1000) |
Time: 2024-11-08 17:09UTC to 2024-11-08 17:15UTC
Event contains 862 original clicks, 431 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 347 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.84 |
| Median 10dB Center Frequency [kHz] | 7.77 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.45 (7.09 - 8.56) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.37 (5.81 - 9.57) |
| Median duration [μs] (25-75 percentile) | 232 (128 - 392) |
Time: 2024-11-08 20:21UTC to 2024-11-08 20:27UTC
Event contains 970 original clicks, 485 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 458 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7 |
| Median 3dB Center Frequency [kHz] | 5.41 |
| Median 10dB Center Frequency [kHz] | 6.3 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.5 (4.58 - 6.34) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.79 (3.61 - 9.15) |
| Median duration [μs] (25-75 percentile) | 344 (182 - 1000) |
Time: 2024-11-08 20:27UTC to 2024-11-08 20:33UTC
Event contains 824 original clicks, 412 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 373 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.57 |
| Median 10dB Center Frequency [kHz] | 6.04 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.43 ( 4.7 - 6.48) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.34 (3.55 - 8.73) |
| Median duration [μs] (25-75 percentile) | 357 (227 - 1000) |
Time: 2024-11-08 20:33UTC to 2024-11-08 20:39UTC
Event contains 910 original clicks, 455 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 415 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.33 |
| Median 10dB Center Frequency [kHz] | 6.45 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.49 (6.28 - 8.13) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.42 (3.58 - 9.42) |
| Median duration [μs] (25-75 percentile) | 501 (339 - 1000) |
Time: 2024-11-08 23:33UTC to 2024-11-08 23:39UTC
Event contains 492 original clicks, 246 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 226 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 6.85 |
| Median 10dB Center Frequency [kHz] | 6.92 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.49 (6.07 - 7.87) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.41 (3.67 - 9.74) |
| Median duration [μs] (25-75 percentile) | 198 (100 - 399) |
Time: 2024-11-09 09:27UTC to 2024-11-09 09:33UTC
Event contains 1500 original clicks, 750 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 333 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.56 |
| Median 10dB Center Frequency [kHz] | 6.24 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.28 (4.75 - 6.44) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.59 (3.52 - 8.55) |
| Median duration [μs] (25-75 percentile) | 253 (23 - 1035) |
# clean up the event table
evTable <- evTable[evTable$keep == TRUE,]
evTable <- subset(evTable, select = -keep)
# save event table as CSV
write.csv(evTable, file = file.path(params$path_dets,
paste0('eventTable_', params$mission, '_',
params$drift, '_', Sys.Date(),'.csv')))
#dbDisconnect(dbFile)
After additional filtering based on median peak frequency, 228 events events of 3203 original events remain.